Just set up a debian Samba box, it's a simple file server, running with
samba 3.0.7. 
The problem I am having is when I try and access a file the connection
freezes and then drops. 
I have tried reinstalling the samba package and multiple config options all
with no luck.
 
I'm sure it's something simple but I just can't find what.
 
 
[global]
 
   workgroup = Office
   server string = simpleoffice
   dns proxy = no
   interfaces = 192.168.0.0/24
   hosts allow = 192.168.0. 127.
   log file = /var/log/samba/log.%m
   max log size = 1000
   syslog = 0
   panic action = /usr/share/samba/panic-action %d
   encrypt passwords = true
   passdb backend = tdbsam guest
   obey pam restrictions = yes
   invalid users = root
   passwd program = /usr/bin/passwd %u
   passwd chat = *Enter\snew\sUNIX\spassword:* %n\n
*Retype\snew\sUNIX\spassword:* %n\n .
   socket options = TCP_NODELAY
 
[homes]
   comment = Home Directories
   browseable = no
   writable = no
   create mask = 0700
   directory mask = 0700
 
[shared]
        comment = Shared File Space
        valid users = shaun, simpleoffice, crazyn3wf, inventory, bench
        path = /home/shared
        wide links = no
        writable = yes
        public = no
        force user = simpleoffice
        force group = simpleoffice
 
# POS DataBase Share
[pos]
        comment = Point Of Sale
        valid users = shaun, simpleoffice, crazyn3wf, inventory
        path = /home/pos
        wide links = no
        writable = yes
        public = no
        force user = simpleoffice
        force group = simpleoffice
 
[backup]
        comment = Backup
        valid users = crazyn3wf
        path = /
        wide links = no
        writable = yes
        public = no
        force user = root
        force group = root
 
Thanks,
Mark