Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 330 Bytes

systemctl.md

File metadata and controls

22 lines (17 loc) · 330 Bytes

systemctl

DISABLE service and switch off potential autostart of it:

$ sudo systemctl disable SERVICE_NAME

STOP service:

$ sudo systemctl stop SERVICE_NAME

ENABLE service

$ sudo systemctl enable SERVICE_NAME

START service:

$ sudo systemctl start SERVICE_NAME