User Tools

Site Tools


linux:network:samba

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

linux:network:samba [2012/07/13 16:51]
tkilla created
linux:network:samba [2012/07/13 16:58] (current)
tkilla
Line 1: Line 1:
 ====== Samba ====== ====== Samba ======
  
-===== howto serve windows-style shares =====+===== howto serve windows-style shares - Samba3 - CIFS ===== 
 + 
 +infos from: http://micheljansen.org/blog/entry/182 
 + 
 +/etc/samba/smb.conf: 
 + 
 +  [global] 
 +  security                = user 
 +  guest account           = nobody 
 +  map to guest            = Bad User 
 +  .. 
 + 
 +public readable share: 
 + 
 +  [share] 
 +        comment = Public Share 
 +        browsable = yes 
 +        path = /public 
 +        public = yes 
 +        writable = no 
 +        write list = your_username_with_write_access_here 
 +        guest ok = yes 
 + 
 +         
 +add guest user:  
 +  smbpasswd -an nobody 
 + 
 +restart samba server: 
 +  /etc/init.d/samba restart 
 + 
 + 
 +---- 
 +mount share example 
 +  mount -t cifs //servername/share /mnt/share 
 +   
 +if you get permission denied add: "-o guest" 
 + 
  
linux/network/samba.1342191071.txt.gz · Last modified: 2012/07/13 16:51 by tkilla