Pages

Google Ads

Tuesday, October 28, 2008

Instalando o Samba e configurando no Ubuntu

Para compartilhar arquivos de um servidor ubuntu é bem simples.

Instale o Samba
$ sudo apt-get install samba

Crie a pasta a ser compartilhada
$ mkdir corujashare

Dê permissão a pasta
$ chmod -R 777 /corujashare

Edite o arquivo smb.conf
$ vi /etc/samba/smb.conf

----------------------------------------------------------------------------------
[global]

workgroup = coruja
netbios name = Coruja
admin users = root
server string = Coruja Share
log file = /var/log/samba/%m.log
max log size = 50
security = share

#============= Share Definitions ====================

[coruja]
comment = Share Servidor Coruja
path = /corujashare
public = yes
read only = no
writeable = yes
create mask = 0777
guest ok = yes

----------------------------------------------------------------------------------

Reinicie o Samba

$ /etc/init.d/samba restart

No comments: