web-dev-qa-db-fra.com

Comment désactiver Samba sur Ubuntu 12.04?

Je dois désactiver (pas désinstaller) Samba sur le serveur Ubuntu 12.04 mais je ne vois aucun lien dans le répertoire rc2.d. Comment Samba démarre après le redémarrage? Comment désactiver le démon smbd/nmbd ?? Qu'est-ce que winbind?

root@newnagios:~# ll /etc/rc2.d/
total 12
drwxr-xr-x   2 root root 4096 Aug 15 16:23 ./
drwxr-xr-x 101 root root 4096 Aug 16 12:13 ../
-rw-r--r--   1 root root  677 Jul 26  2012 README
lrwxrwxrwx   1 root root   17 Aug  4 20:34 S20postfix -> ../init.d/postfix*
lrwxrwxrwx   1 root root   15 Aug 12 15:55 S20snmpd -> ../init.d/snmpd*
lrwxrwxrwx   1 root root   17 Aug  4 20:34 S20winbind -> ../init.d/winbind*
lrwxrwxrwx   1 root root   13 Aug  5 12:42 S23ntp -> ../init.d/ntp*
lrwxrwxrwx   1 root root   15 Aug  4 18:07 S25mdadm -> ../init.d/mdadm*
lrwxrwxrwx   1 root root   15 Aug  4 20:34 S50rsync -> ../init.d/rsync*
lrwxrwxrwx   1 root root   19 Aug  4 20:34 S70dns-clean -> ../init.d/dns-clean*
lrwxrwxrwx   1 root root   18 Aug  4 20:34 S70pppd-dns -> ../init.d/pppd-dns*
lrwxrwxrwx   1 root root   14 Aug  4 22:03 S75Sudo -> ../init.d/Sudo*
lrwxrwxrwx   1 root root   17 Aug  4 20:34 S91Apache2 -> ../init.d/Apache2*
lrwxrwxrwx   1 root root   21 Aug  4 20:35 S99grub-common -> ../init.d/grub-common*
lrwxrwxrwx   1 root root   18 Aug  4 18:06 S99ondemand -> ../init.d/ondemand*
lrwxrwxrwx   1 root root   18 Aug  4 18:06 S99rc.local -> ../init.d/rc.local*
12
user184596

Tapez la commande suivante pour arrêter le service smbd.

Pour arrêter Samba:

Sudo service smbd stop

ou

Sudo /etc/init.d/smbd stop

Pour démarrer Samba:

Sudo service smbd start

ou

Sudo /etc/init.d/smbd start

Pour le supprimer du fichier rc.d, utilisez la commande

Sudo update-rc.d -f smbd remove

Pour le restaurer sur rc.d, utilisez la commande

Sudo update-rc.d smbd defaults
17
Tarun

Utilisez cette commande pour désactiver le service Samba:

update-rc.d -f smbd defaults 

Ou utilisez ceci pour le service Upstart:

echo 'manual' | Sudo tee /etc/init/smbd.conf

Ou vous pouvez installer et vérifier les services:

apt-get install rcconf
2
user184673