Show All Running Service Linux

[Solved] Show All Running Service Linux | Shell - Code Explorer | yomemimo.com
Question : show all running service linux

Answered by : roie

//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

Source : | Last Update : Wed, 30 Dec 20

Answers related to show all running service linux

Code Explorer Popular Question For Shell