https://askubuntu.com/questions/912216/16-04-command-to-list-all-services-started-on-boot
+
= running-
= stoppedList 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
/etc/init.d/<servicename> start|stop|status
chkconfig --list chkconfig <servicename> on|off
apt-get install rcconf rcconf --list rcconf --on <servicename>