Getting Started with Arch Linux 08 - Process Management
Jump to navigation
Jump to search
Overview
In the eigth video of the Arch Linux series, we learn about basic process management.
Relevant Links |
---|
Original Video |
Commands Used in this Video
systemctl commands (using NetworkManager as an example)
Check the status of a unit:
sudo systemct status NetworkManager
Start a unit:
sudo systemctl start NetworkManager
Stop a unit:
sudo systemctl stop NetworkManager
Enable a unit:
sudo systemctl enable NetworkManager
Disable a unit:
sudo systemctl disable NetworkManager
Logging Examples (journalctl)
Check the log for a unit:
journalctl -u NetworkManager
Follow the output of a unit:
journalctl -fu NetworkManager