Difference between revisions of "Instalasi Samba"

From OnnoWiki
Jump to navigation Jump to search
(New page: Instalasi SAMBA # apt-get install samba smbfs Edit file /etc/samba/smb.conf Pastikan ada parameter netbios name = namakomputeranda workgroup = namajaringan security = share ...)
 
Line 20: Line 20:
 
   public = yes
 
   public = yes
  
Ubah owner /home/public agar bisa di write
+
Ubah owner folder yang di share /home/public agar bisa di write
  
  # chown -Rf nobody.nogroup /home/public
+
# chown -Rf nobody.nogroup /home/public
 +
 
 +
Restart server samba
 +
 
 +
# /etc/init.d/samba restart

Revision as of 13:43, 10 February 2008

Instalasi SAMBA

# apt-get install samba smbfs

Edit file /etc/samba/smb.conf

Pastikan ada parameter

netbios name = namakomputeranda
workgroup    = namajaringan
security     = share

Pastikan ada folder yang di share, misalnya seperti

[public]
  comment = Directory Public Samba server
  writable = yes
  locking = yes
  path = /home/public
  public = yes

Ubah owner folder yang di share /home/public agar bisa di write

# chown -Rf nobody.nogroup /home/public

Restart server samba

# /etc/init.d/samba restart