Answers for "list all servicess running in linux"

9

ubuntu list running services

To check all running services
service --status-all | grep '\[ + \]'

To check all services (running & non running)
service --status-all
Posted by: Guest on May-14-2020
5

linux view services

service --status-all
service --status-all | more
service --status-all | grep ntpd
service --status-all | less
Posted by: Guest on May-11-2020

Code answers related to "list all servicess running in linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language