Como desativar o Samba no Ubuntu 12.04?

11

Eu preciso desabilitar (não desinstalar) o Samba no servidor Ubuntu 12.04, mas não vejo nenhum link no diretório rc2.d. Como o Samba está iniciando após a reinicialização? Como desativar o daemon smbd / nmbd? O 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*
    
por user184596 16.08.2013 / 13:04

2 respostas

15

Digite o seguinte comando para parar o serviço smbd.

Para parar o Samba:

sudo service smbd stop

ou

sudo /etc/init.d/smbd stop

Para iniciar o Samba:

sudo service smbd start

ou

sudo /etc/init.d/smbd start

Para removê-lo do arquivo rc.d, use o comando

sudo update-rc.d -f smbd remove

Para restaurá-lo para o rc.d use o comando

sudo update-rc.d smbd defaults
    
por Tarun 16.08.2013 / 13:14
1

Use este comando para desabilitar o serviço Samba:

update-rc.d -f smbd defaults 

Ou use isso para o serviço Upstart:

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

Ou você pode instalar e verificar serviços:

apt-get install rcconf
    
por user184673 16.08.2013 / 17:18

Tags