Raspbian: install samba file sharing server: Difference between revisions
From OnnoCenterWiki
Jump to navigationJump to search
Onnowpurbo (talk | contribs) No edit summary |
Onnowpurbo (talk | contribs) No edit summary |
||
| Line 31: | Line 31: | ||
chmod -Rf 777 /home/public | chmod -Rf 777 /home/public | ||
chmod -Rf 644 /home/data | chmod -Rf 644 /home/data | ||
Restart | |||
/etc/init.d/smbd restart | |||
==Pranala Menarik== | |||
* [[Internet Offline]] | |||
Revision as of 22:33, 8 October 2018
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.nogroup /home/public chown -Rf nobody.nogroup /home/data chmod -Rf 777 /home/public chmod -Rf 644 /home/data
Restart
/etc/init.d/smbd restart