Table of Contents

Services Startup Configuration Notes

systemd

https://askubuntu.com/questions/912216/16-04-command-to-list-all-services-started-on-boot

List services:

service --status-all

Query status, enable or disable a service:

systemctl [is-enabled|enable|disable] <servicename>

List all enabled services:

systemctl list-unit-files | grep enabled

List currently running services:

systemctl | grep running

sysvinit

/etc/init.d/<servicename> start|stop|status

CentOS/RedHat

chkconfig --list

chkconfig <servicename> on|off

Debian/Ubuntu

apt-get install rcconf

rcconf --list

rcconf --on <servicename>