Raspbian: install samba file sharing server

From OnnoWiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Instalasi

sudo apt-get install samba cifs-utils

Konfigurasi

vi /etc/samba/smb.conf

Tambahkan

[public]
path = /home/public
available = yes
browsable = yes
public = yes
writable = yes

[data]
path = /home/data
available = yes
browsable = yes
public = yes
writable = no

Kemudian buat directory, ubah permission & owner yang dibutuhkan

mkdir /home/public
mkdir /home/data
chown -Rf nobody: /home/public
chown -Rf nobody: /home/data
chmod -Rf 777 /home/public
chmod -Rf 777 /home/data


Restart

/etc/init.d/smbd restart
service smbd start


Pranala Menarik