Home

Published

- 1 min read

show all running service linux

img of show all running service linux

The solution for this is noted below

show all running service linux

Solution

   //to see all runninig services
sudo service --status-all | grep + 

//to start service
sudo service [service name] start

//to stop service
sudo service [service name] stop
  
// to see specific service status
sudo service [service name] status

Try other methods by searching on the site. That is if this doesn’t work