User Tools

Site Tools


computing:linux:services_startup

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
computing:linux:services_startup [2014/03/10 12:46]
gcooper
computing:linux:services_startup [2018/02/28 09:09] (current)
gcooper
Line 1: Line 1:
 ====== Services Startup Configuration Notes ====== ====== Services Startup Configuration Notes ======
 +
 +===== systemd =====
 +
 +https://askubuntu.com/questions/912216/16-04-command-to-list-all-services-started-on-boot
 +
 +  * ''+'' = running
 +  * ''-'' = stopped
 +
 +**List** services: 
 +
 +<file>
 +service --status-all
 +</file>
 +
 +**Query status, enable or disable** a service:
 +
 +<file>
 +systemctl [is-enabled|enable|disable] <servicename>
 +</file>
 +
 +List all **enabled** services:
 +
 +<file>
 +systemctl list-unit-files | grep enabled
 +</file>
 +List **currently running** services:
 +
 +<file>
 +systemctl | grep running
 +</file>
 +
 +===== sysvinit =====
  
 <file> <file>
computing/linux/services_startup.1394477214.txt.gz · Last modified: 2014/03/10 12:46 by gcooper