Announcement

Collapse
No announcement yet.

samba file sharing

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    samba file sharing

    ok i eventually have samba installed. now how do i set it so that windows users can read and write without having to enter a password?

    #2
    Re: samba file sharing

    Here is a copy of my /etc/samba/smb.conf that I use with winxp
    global]
    workgroup = MSHOME
    security = SHARE
    auth methods = guest
    map to guest = Bad User
    obey pam restrictions = Yes
    passdb backend = tdbsam
    pam password change = Yes
    passwd program = /usr/bin/passwd %u
    passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* .
    unix password sync = Yes
    syslog = 0
    log file = /var/log/samba/log.smb
    max log size = 1000
    name resolve order = wins lmhosts hosts bcast
    domain master = No
    dns proxy = No
    usershare allow guests = Yes
    panic action = /usr/share/samba/panic-action %d

    [Home]
    path = /home/gil/
    read only = No
    create mask = 0775
    directory mask = 0775
    guest ok = Yes
    veto files = /~*/
    hide files = /~*/

    [Public]
    path = /home/gil/Public/
    read only = No
    create mask = 0775
    directory mask = 0775
    guest ok = Yes
    hosts allow = 127.0.0.1, 192.168., localhost
    hosts deny = 192.168.220.102

    [Local Disk]
    path = /media/Local Disk/
    read only = No
    create mask = 0775
    directory mask = 0775
    guest ok = Yes

    [Win-Shared]
    path = /media/Win-Shared/
    read only = No
    create mask = 0775
    directory mask = 0775
    guest ok = Yes

    [printers]
    comment = All Printers
    path = /var/spool/samba
    create mask = 0700
    printable = Yes
    browseable = No

    [print$]
    comment = Printer Drivers
    path = /var/lib/samba/printers

    Comment


      #3
      Re: samba file sharing

      Try this:

      http://blogs.pcworld.co.nz/pcworld/t...le_server.html

      Comment

      Working...
      X