Advertisement
Guest User

Untitled

a guest
Mar 7th, 2015
1,460
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.49 KB | None | 0 0
  1. ################################################################################
  2. # This file is part of OpenELEC - http://www.openelec.tv
  3. # Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv)
  4. #
  5. # This Program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2, or (at your option)
  8. # any later version.
  9. #
  10. # This Program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with OpenELEC.tv; see the file COPYING. If not, write to
  17. # the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA.
  18. # http://www.gnu.org/copyleft/gpl.html
  19. ################################################################################
  20. # samba.conf
  21.  
  22. # This configuration file allows you to customize the samba shares
  23. # available from your machine
  24.  
  25. [global]
  26. server string = OpenELEC
  27. workgroup = WORKGROUP
  28. os level = 100
  29. netbios name = %h
  30. security = share
  31. guest account = root
  32. socket options = TCP_NODELAY IPTOS_LOWDELAY SO_RCVBUF=65536 SO_SNDBUF=65536
  33. smb ports = 445
  34. max protocol = SMB2
  35. min receivefile size = 16384
  36. deadtime = 30
  37. #os level = 20
  38. mangled names = no
  39. syslog only = yes
  40. syslog = 2
  41. name resolve order = lmhosts wins bcast host
  42. preferred master = yes
  43. domain master = yes
  44. local master = yes
  45. printcap name = /dev/null
  46. load printers = no
  47. browseable = yes
  48. writeable = yes
  49. printable = no
  50. encrypt passwords = true
  51. enable core files = no
  52. passdb backend = smbpasswd
  53. smb encrypt = disabled
  54. use sendfile = yes
  55. nt acl support = yes
  56.  
  57.  
  58. # Using the following configurations as a template allows you to add
  59. # writable shares of disks and paths under /storage
  60.  
  61. [Update]
  62. path = /storage/.update
  63. available = yes
  64. browsable = yes
  65. public = yes
  66. writable = yes
  67. root preexec = mkdir -p /storage/.update
  68.  
  69. [Filme]
  70. path = /storage/videos
  71. available = yes
  72. browsable = yes
  73. public = yes
  74. writable = yes
  75. root preexec = mkdir -p /storage/videos
  76.  
  77. [Filme2]
  78. path = /media/storage2/Filme
  79. available = yes
  80. browsable = yes
  81. public = yes
  82. writable = yes
  83.  
  84. [Filme3]
  85. path = /media/storage3/videos
  86. available = yes
  87. browsable = yes
  88. public = yes
  89. writable = yes
  90.  
  91. [Musik]
  92. path = /storage/music
  93. available = yes
  94. browsable = yes
  95. public = yes
  96. writable = yes
  97. root preexec = mkdir -p /storage/music
  98.  
  99. [Musik2]
  100. path = /media/storage2/Music
  101. available = yes
  102. browsable = yes
  103. public = yes
  104. writable = yes
  105.  
  106. [Musik3]
  107. path = /media/storage3/music
  108. available = yes
  109. browsable = yes
  110. public = yes
  111. writable = yes
  112.  
  113. [Serien]
  114. path = /storage/tvshows
  115. available = yes
  116. browsable = yes
  117. public = yes
  118. writable = yes
  119. root preexec = mkdir -p /storage/tvshows
  120.  
  121. [Serien2]
  122. path = /media/storage2/Serien
  123. available = yes
  124. browsable = yes
  125. public = yes
  126. writable = yes
  127.  
  128. [Serien3]
  129. path = /media/storage3/tvshows
  130. available = yes
  131. browsable = yes
  132. public = yes
  133. writable = yes
  134.  
  135. [Storage]
  136. path = /storage
  137. available = yes
  138. browsable = yes
  139. public = yes
  140. writable = yes
  141.  
  142. [Storage2]
  143. path = /media/storage2
  144. available = yes
  145. browsable = yes
  146. public = yes
  147. writable = yes
  148.  
  149. [Storage3]
  150. path = /media/storage3
  151. available = yes
  152. browsable = yes
  153. public = yes
  154. writable = yes
  155.  
  156. [Recordings]
  157. path = /storage/recordings
  158. available = yes
  159. browsable = yes
  160. public = yes
  161. writable = yes
  162. root preexec = mkdir -p /storage/recordings
  163.  
  164. [Downloads]
  165. path = /storage/downloads
  166. available = yes
  167. browsable = yes
  168. public = yes
  169. writable = yes
  170. root preexec = mkdir -p /storage/downloads
  171.  
  172. [Bilder]
  173. path = /storage/pictures
  174. available = yes
  175. browsable = yes
  176. public = yes
  177. writable = yes
  178. root preexec = mkdir -p /storage/pictures
  179.  
  180. [Bilder2]
  181. path = /media/storage2/Bilder
  182. available = yes
  183. browsable = yes
  184. public = yes
  185. writable = yes
  186.  
  187. [Bilder3]
  188. path = /media/storage3/pictures
  189. available = yes
  190. browsable = yes
  191. public = yes
  192. writable = yes
  193.  
  194. [Emulatoren]
  195. path = /storage/emulators/mame/roms
  196. available = yes
  197. browsable = yes
  198. public = yes
  199. writable = yes
  200. root preexec = mkdir -p /storage/emulators/mame/roms
  201.  
  202. [Configfiles]
  203. path = /storage/.config
  204. available = yes
  205. browsable = yes
  206. public = yes
  207. writable = yes
  208. root preexec = mkdir -p /storage/.config
  209.  
  210. [Userdata]
  211. path = /storage/.xbmc/userdata
  212. available = yes
  213. browsable = yes
  214. public = yes
  215. writable = yes
  216. root preexec = mkdir -p /storage/.xbmc/userdata
  217.  
  218. [Screenshots]
  219. path = /storage/screenshots
  220. available = yes
  221. browsable = yes
  222. public = yes
  223. writable = yes
  224. root preexec = mkdir -p /storage/screenshots
  225.  
  226. [Media]
  227. path = /media
  228. available = yes
  229. browsable = yes
  230. public = yes
  231. writable = yes
  232. root preexec = mkdir -p /media
  233.  
  234. [Logfiles]
  235. path = /storage/logfiles
  236. available = yes
  237. browsable = yes
  238. public = yes
  239. writable = yes
  240. root preexec = mkdir -p /storage/logfiles
  241. root preexec = createlog
  242.  
  243. [Backup]
  244. path = /storage/backup
  245. available = yes
  246. browsable = yes
  247. public = yes
  248. writable = yes
  249. root preexec = mkdir -p /storage/backup
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement