Answers for "ubuntu systemctl list services"

6

list all services using systemctl

## List all services
systemctl list-units  --type=service

## List running services
systemctl list-units  --type=service  --state=running

## List all svc in simplified way
service --status-all
Posted by: Guest on May-26-2020
0

systemctl check availabe services

# systemctl list-units --type=service
OR
# systemctl --type=service
Posted by: Guest on July-01-2020
0

ubuntu systemctl list services

systemctl list-units --type=service
Posted by: Guest on March-31-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language