Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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
Source by linuxhint.com #
 
PREVIOUS NEXT
Tagged: #ubuntu #show #services #list
ADD COMMENT
Topic
Name
6+6 =