Advertisement
Guest User

Untitled

a guest
Oct 29th, 2022
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | Software | 0 0
  1. # smb.conf is the main Samba configuration file. You find a full commented
  2. # version at /usr/share/doc/packages/samba/examples/smb.conf.SUSE if the
  3. # samba-doc package is installed.
  4.  
  5. [global]
  6.  
  7. workgroup = WORKGROUP
  8. security = user
  9. guest account = nick
  10. passdb backend = smbpasswd
  11. usershare allow guests = Yes
  12. wins support = Yes
  13. log file = /var/log/samba/smb.log
  14. null passwords = true
  15. log level = 1 auth:5 winbind:5
  16. # map to guest = Bad User
  17. # printcap name = cups
  18. # logon path = \\%L\profiles\.msprofile
  19. # logon drive = P:
  20. # logon home = \\%L\%U\.9xprofile
  21. # idmap config * : backend = tdb
  22. # cups options = raw
  23. # map to guest = bad user
  24. # dns proxy = no
  25. netbios name = NickPC
  26. usershare max shares = 100
  27.  
  28. [Scan]
  29.  
  30. path = /home/nick/Exchange/Scan
  31. guest ok = Yes
  32. writable = yes
  33. read only = No
  34. create mode = 0777
  35. directory mode = 0777
  36. # browsable = yes
  37. # writable = yes
  38. create mask = 0777
  39. directory mask = 0777
  40. [Exchange]
  41.  
  42. path = /home/nick/Exchange
  43. guest ok = yes
  44. browsable = yes
  45. writable = yes
  46. browseable = yes
  47. read only = No
  48.  
  49.  
  50. # [private]
  51. #path = /media/samba/private
  52. #valid users = @smbgrp
  53. #guest ok = no
  54. #browsable = yes
  55. #writable = yes
  56.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement