systemd Cheat Sheet — systemctl Commands Reference Free

Complete systemd and systemctl command reference. Start, stop, enable, check status, view logs with journalctl, write unit files. Free Linux sysadmin reference.

Help Us Improve
Be the first to rate!

Frequently Asked Questions

How do I use the systemd Cheat Sheet?
Browse by task (start service, check logs, write unit file) or search by command. Each entry shows the exact command with explanation.
Is the systemd Cheat Sheet free?
Yes, systemd Cheat Sheet on ToolPix is 100% free with no signup or installation required.
Is my data safe?
This is a static reference tool. No data is entered or transmitted.
How do I start a service and enable it on boot?
sudo systemctl start myservice — starts it now. sudo systemctl enable myservice — starts it on boot. Combine: sudo systemctl enable --now myservice.
How do I view service logs?
journalctl -u myservice shows all logs for a service. Add -f to follow in real time, -n 50 for last 50 lines, --since '1 hour ago' to filter by time.