Identify Automatically Started System Processes Flashcards
What command lists all installed service units?
systemctl list-units –type=service
What command list all socket units, active and inactive?
systemctl list-units –type=socket –all
What command displays the status of a service?
systemctl status <service></service>
What command confirms a process is running by PID?
ps -p <PID></PID>
What command determines if a service is enabled?
systemctl is-enabled <service></service>
What command deterines whether a service is active without display status information?
systemctl is-active sshd
What command displays the status of a service?
systemctl status <service></service>
What command list disabled or enabled states of all service units?
systemctl list-unit-files –type=service