Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

ubuntu list running services

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

To check all services (running & non running)
service --status-all
Comment

ubuntu show services list

#To show all installed unit files use:
systemctl list-unit-files
#To show all Ubuntu services:
systemctl --no-pager
#To show all unit files:
systemctl list-units --all --type=service --no-pager
#To show systemd unit files:
systemctl list-unit-files --no-pager
#To show enabled systemd service unit files:
systemctl list-unit-files | grep enabled
#To show disabled systemd service unit files:
systemctl list-unit-files | grep disabled
Comment

PREVIOUS NEXT
Code Example
Shell :: Starting Apache...fail. 
Shell :: build-essential package equivalent for fedora 
Shell :: npm cache clean 
Shell :: how to kill apache process in linux 
Shell :: restart postgres ubuntu 
Shell :: uninstall skype from ubuntu 
Shell :: ubuntu pip3 
Shell :: [ERROR] Error while getting Capacitor CLI version. Is Capacitor installed? 
Shell :: test internet speed terminal linux 
Shell :: find gnome shell version 
Shell :: conda install keras 
Shell :: empty commit 
Shell :: kill a port process in ubuntu 
Shell :: git pull with submodules 
Shell :: install redis on mac 
Shell :: cmd clear dns cache 
Shell :: uninstalling eclipse from ubuntu 
Shell :: npm install --no-audit --save --save-exact --loglevel error react react-dom react-scripts cra-template has failed. 
Shell :: linux ls command file size human readable 
Shell :: uninstall qt creator ubuntu 
Shell :: jq on mac 
Shell :: apache enable mod reqrite 
Shell :: Amazon Linux 2 AMI install docker 
Shell :: git assume unchanged and do not commit 
Shell :: uninstall anydesk ubuntu 
Shell :: zsh: command not found: wget 
Shell :: bat current directory 
Shell :: git unset alias 
Shell :: find empty files linux 
Shell :: How do I check my WSL version? 
ADD CONTENT
Topic
Content
Source link
Name
6+3 =