Useful Commands/Service Management: Difference between revisions

From Fundamental Ramen
Jump to navigation Jump to search
Line 6: Line 6:
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
systemctl -t service
systemctl -t service
systemctl list-units -t service
</syntaxhighlight>
</syntaxhighlight>
|-
|-
Line 26: Line 25:


systemctl status llama-swap
systemctl status llama-swap
systemctl status llama-swap.service
</syntaxhighlight>
</syntaxhighlight>
|-
|-

Revision as of 02:35, 10 September 2026

systemctl

Purpose Command
List
systemctl -t service
Setup
sudo systemctl disable llama-swap
sudo systemctl daemon-reload

sudo ln -s /home/xxx/yyy/llama-swap.service llama.service
sudo systemctl enable llama-swap
sudo systemctl daemon-reload
Monitor
journalctl -u llama-swap --since "10:20"
journalctl -u llama-swap --since "10 minutes ago"
journalctl -u llama-swap --since today

systemctl status llama-swap
Control
systemctl start  nginx
systemctl stop   nginx
systemctl reload nginx
systemctl reload systemd-networkd

Run Level

Run Level Description
0 halt
1 single user mode
2 Multi-user, without NFS
3 Full multi-user mode
4 unused
5 X11
6 reboot