Advertisement
Guest User

New smb.conf

a guest
Mar 4th, 2016
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.89 KB | None | 0 0
  1. # /etc/samba/smb.conf file for COMPLETELY INSECURE SHARING
  2. # You need to replace each "USER_NAME" instance with your username
  3. # You can use gedit Text Editor and menu choices Search... Replace
  4.  
  5. [global]
  6. guest account = user1
  7. map to guest = bad user
  8. workgroup = WORKGROUP
  9. name resolve order = bcast host
  10. server string = SambaServer
  11. security = user
  12. name resolve order = hosts lmhosts
  13.  
  14. [Documents]
  15. path = /home/user1/Documents
  16. guest ok = yes
  17. read only = no
  18.  
  19. [Downloads]
  20. path = /home/user1/Downloads
  21. guest ok = yes
  22. read only = no
  23.  
  24. [Music]
  25. path = /home/user1/Music
  26. guest ok = yes
  27. read only = no
  28.  
  29. [Pictures]
  30. path = /home/user1/Pictures
  31. guest ok = yes
  32. read only = no
  33.  
  34. [Public]
  35. path = /home/user1/Public
  36. guest ok = yes
  37. read only = no
  38.  
  39. [Templates]
  40. path = /home/user1/Templates
  41. guest ok = yes
  42. read only = no
  43.  
  44. [Videos]
  45. path = /home/user1/Videos
  46. guest ok = yes
  47. read only = no
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement