Linux Lite Forums
SystemD Manager not showing all services - Printable Version

+- Linux Lite Forums (https://www.freecinema2022.gq/forums)
+-- Forum: Software - Support (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=5)
+--- Forum: Other (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=20)
+--- Thread: SystemD Manager not showing all services (/showthread.php?tid=3315)

Pages: 1 2


Re: SystemD Manager not showing all services - Valtam - 09-20-2016

Upstart and SystemD run alongside each other, not ideal, but that's how it is at the moment. Upstart won't be removed completely by Ubuntu until the next LTS.
So if you want samba completely disabled, you need to use Upstart too. SystemD does control the init at start up, but Upstart is there too.

Code:
sudo service smbd stop
sudo service nmbd stop

Permanently remove samba from starting at boot:

Code:
sudo update-rc.d -f smbd remove
sudo update-rc.d -f nmbd remove

To restore it back:

Code:
sudo update-rc.d smbd defaults
sudo update-rc.d nmbd defaults

I won't be disabling Upstart in series 3.x This is something that is better handled by Ubuntu in the next LTS.


Re: SystemD Manager not showing all services - LL-user - 09-20-2016

Perfect! Thank you, Jerry! Smile


Re: SystemD Manager not showing all services - Valtam - 09-20-2016

No problemo Smile