Enable, start, stop or disable services in Ubuntu

Enter the commands shown in italics in a terminal window to:

List all services running:
$ sudo service <service> --status-all <enter>

Disable a service from startup:
$ sudo sudo service <service> disable <enter>

Stop a service:
$ sudo service <service> stop <enter>

Start a service:
$ sudo service <service> start <enter>