+++ date="2023-02-03" author="spanskiduh" title="services-and-process-management" description="click to read about services-and-process-management" +++ # Services and process management ### PS command - `ps aux` - display **all** running services (snapshot) ex. `ps aux | grep "ssh"` - `sudo kill ` - kill process with provided pid, provided by `ps` command - `pkill ` - kill process by name :sunglasses: **OG COMMAND** -> `ps -auxf` (tree structure) ## on systemd u can also - `systemctl | grep ` - display all running services or grep one - `sudo systemctl is-enabled ssh` - check if service is enabled