init.d
- o Init-System está "morto" - mas o próprio script ainda existe em /etc/init.d/deluged
.
deluged
- instalado a partir do repositório do Ubuntu - não contém um serviço systemd nativo !
Ele redireciona para systemd-sysv-install
.
Você pode verificar isso executando sudo systemctl disable deluged.service
.
A saída mostra que atualmente não existe script nativo:
deluged.service is not a native service, redirecting to systemd-sysv-install
Executing /lib/systemd/systemd-sysv-install disable deluged
insserv: warning: current start runlevel(s) (empty) of script 'deluged' overrides LSB defaults (2 3 4 5).
insserv: warning: current stop runlevel(s) (0 1 2 3 4 5 6) of script 'deluged' overrides LSB defaults (0 1 6).
De qualquer forma, você deve usar systemctl
.
Instalar
sudo apt-get install deluged
Iniciar / Parar / Reiniciar…
sudo systemctl start deluged.service
sudo systemctl stop deluged.service
sudo systemctl restart deluged.service