Advertisement
Guest User

bamt somewhat default settings

a guest
Mar 15th, 2012
526
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.25 KB | None | 0 0
  1. # Big A Miner Thing configuration
  2. # /etc/bamt/bamt.conf
  3. #
  4. # When done editing, restart mining to make changes here take effect
  5. # If you're just setting up BAMT, be sure to edit pools as well.
  6. #
  7. # As of 0.5, many less common options have been removed from this
  8. # default config to make it easier on the noobs.
  9. #
  10. # You will find a complete example with all options described
  11. # at /opt/bamt/examples/bamt.conf
  12. #
  13. # Note: This is a YAML file. Indentation is significant.
  14. #
  15. # If you break things badly, a backup of this file in it's original
  16. # form can be found at /opt/bamt/examples/bamt.conf.simple
  17. #
  18.  
  19.  
  20. ---
  21. settings:
  22.  
  23. # miner_id is used to set hostname and identify this rig to munin and
  24. # other processes
  25. # IMPORTANT! miner_id must be a valid hostname: all lower case, no weird
  26. # characters, underscores, periods, or spaces. Dash and numbers are ok.
  27.  
  28. miner_id: bamt-miner8a
  29.  
  30. # loc is any additional string you wish to use to identify or group this rig
  31.  
  32. miner_loc: unspecified location
  33.  
  34. # should we monitor the cards? 1 = yes, 0 = no
  35.  
  36. do_monitor: 0
  37.  
  38. # if monitoring, how do we send email alerts?
  39.  
  40. # these are required..
  41.  
  42. # smtp_host: smtp.gmail.com
  43. # smtp_to: you@yourmail.com
  44.  
  45. # these are optional..
  46.  
  47. # smtp_from: somefrom@address
  48. # smtp_subject: I wanted a custom subject in my alerts...
  49. # smtp_port: 587
  50. # smtp_auth_user: user@where
  51. # smtp_auth_pass: secret
  52. # smtp_tls: 1
  53. # smtp_ssl: 1
  54.  
  55. # GPU Configurtation
  56.  
  57. # You'll need one gpuX: section per GPU installed. Not sure what's installed,
  58. # or the order? Open a root shell and type: aticonfig --list-adapters
  59. #
  60. # You can delete gpu sections if you don't have that many cards.. or add more
  61. # if you find a way to run them
  62.  
  63.  
  64.  
  65. gpu0:
  66.  
  67. # remove disabled: or set it to 0 to actually use this card..
  68.  
  69. disabled: 0
  70.  
  71.  
  72. # overclocking.. all are optional
  73.  
  74. # optional command to execute prior to overclocking
  75. # any valid command (or the path to a script) is fine
  76.  
  77. # pre_oc_cmd:
  78.  
  79.  
  80. # (core/mem)_X = the value to set for this profile (0-2)
  81. # Profile 2 is used while mining, but setting values
  82. # in profile 2 that are *lower* than the values in the other
  83. # profiles is not allowed on some GPUs, so you have to adjust
  84. # the other profiles as well.
  85. # For instance, to get 300Mhz mem clock on my 5830s, I have
  86. # to set all 3 profiles to 300.
  87.  
  88.  
  89. # core_speed_0: 300
  90. # core_speed_1: 800
  91. core_speed_2: 888
  92.  
  93. # mem_speed_0: 300
  94. # mem_speed_1: 300
  95. mem_speed_2: 300
  96.  
  97. # core_voltage_0: 1.125
  98. # core_voltage_1: 1.125
  99. # core_voltage_2: 1.125000
  100.  
  101. # recommend to set and forget fan, preferably at 100
  102.  
  103. fan_speed: 100
  104.  
  105. # optional command to execute after overclocking
  106. # post_oc_cmd:
  107.  
  108.  
  109.  
  110. # Phoenix mining setup (see full example for how to use cgminer instead)
  111. # We strongly recommend you use phoenix at, least until you are familiar
  112. # with BAMT
  113.  
  114. # kernel to use.. one of: phatk phatk2 poclbm
  115. # if in doubt, use phatk2
  116.  
  117. kernel: phatk2
  118.  
  119. # phoenix style kernel params. *do not* include DEVICE=x, otherwise
  120. # exactly same as any phoenix setup.
  121. # if in doubt: BFI_INT VECTORS AGGRESSION=11
  122. # (though 9 on GPU0 often makes using the GUI more pleasant)
  123.  
  124. kernel_params: BFI_INT VECTORS FASTLOOP=false AGGRESSION=9
  125.  
  126.  
  127. # Pool file
  128.  
  129. # IMPORTANT: pool_file must contain a list of pool URLs.. one at least, more if
  130. # you like. You can share the same file for all GPUs, or have one for each.
  131. # Miner will start with first URL in file, however if no shares are accepted
  132. # for any reason in (pool_timeout) seconds, the miner will move to next URL
  133. # in the file. Wraps around to first URL when last one fails.
  134. # You can also set pool specific values, see the example pools file.
  135. # if in doubt: /etc/bamt/pools
  136.  
  137. pool_file: /etc/bamt/pools
  138.  
  139. # max time to allow phoenix to run without finding a share..
  140. # exceed this and we kill phoenix, start a new instance with
  141. # next line in pools file
  142.  
  143. pool_timeout: 180
  144.  
  145.  
  146.  
  147. # monitoring limits, used by email alerts and gpumon
  148. # an alert is generated if the current value goes below a 'lo'
  149. # or above a 'hi'.
  150.  
  151. # GPU temp sensor reading (in C)
  152. monitor_temp_lo: 45
  153. monitor_temp_hi: 80
  154.  
  155. # GPU load (in %)
  156. monitor_load_lo: 80
  157.  
  158. # average hashrate (in mh/s)
  159. monitor_hash_lo: 125
  160.  
  161. # fam rpm (in rpm)
  162. monitor_fan_lo: 2000
  163.  
  164. # effective reject rate (in % of total)
  165. monitor_reject_hi: 2
  166.  
  167.  
  168.  
  169. # OK.. hopefully you get the idea. Stubs for additional GPUs below.
  170. # There are many additional paramters to help you deal with various
  171. # scenarios, see /opt/bamt/examples and the docs (if we write some)
  172.  
  173.  
  174. gpu1:
  175. disabled: 1
  176.  
  177. # core_speed_0: 300
  178. # core_speed_1: 800
  179. core_speed_2: 888
  180. # mem_speed_0: 300
  181. # mem_speed_1: 300
  182. mem_speed_2: 300
  183. # core_voltage_0: 1.125
  184. # core_voltage_1: 1.125
  185. # core_voltage_2: 1.125000
  186.  
  187. fan_speed: 100
  188.  
  189. kernel: phatk2
  190. kernel_params: BFI_INT VECTORS FASTLOOP=false AGGRESSION=11
  191.  
  192. pool_file: /etc/bamt/pools
  193. pool_timeout: 180
  194.  
  195. monitor_temp_lo: 45
  196. monitor_temp_hi: 80
  197. monitor_load_lo: 80
  198. monitor_hash_lo: 125
  199. monitor_fan_lo: 2000
  200. monitor_reject_hi: 1
  201.  
  202.  
  203. gpu2:
  204. disabled: 0
  205.  
  206. # core_speed_0: 300
  207. # core_speed_1: 800
  208. core_speed_2: 888
  209. # mem_speed_0: 300
  210. # mem_speed_1: 300
  211. mem_speed_2: 300
  212. # core_voltage_0: 1.125
  213. # core_voltage_1: 1.125
  214. # core_voltage_2: 1.125000
  215.  
  216. fan_speed: 100
  217.  
  218. kernel: phatk2
  219. kernel_params: BFI_INT VECTORS FASTLOOP=false AGGRESSION=11
  220.  
  221. pool_file: /etc/bamt/pools
  222. pool_timeout: 180
  223.  
  224. monitor_temp_lo: 45
  225. monitor_temp_hi: 80
  226. monitor_load_lo: 80
  227. monitor_hash_lo: 125
  228. monitor_fan_lo: 2000
  229. monitor_reject_hi: 1
  230.  
  231.  
  232.  
  233. gpu3:
  234. disabled: 1
  235.  
  236. # core_speed_0: 300
  237. # core_speed_1: 800
  238. core_speed_2: 888
  239. # mem_speed_0: 300
  240. # mem_speed_1: 300
  241. mem_speed_2: 300
  242. # core_voltage_0: 1.125
  243. # core_voltage_1: 1.125
  244. # core_voltage_2: 1.125000
  245.  
  246. fan_speed: 100
  247.  
  248. kernel: phatk2
  249. kernel_params: BFI_INT VECTORS FASTLOOP=false AGGRESSION=11
  250.  
  251. pool_file: /etc/bamt/pools
  252. pool_timeout: 180
  253.  
  254. monitor_temp_lo: 45
  255. monitor_temp_hi: 80
  256. monitor_load_lo: 80
  257. monitor_hash_lo: 125
  258. monitor_fan_lo: 2000
  259. monitor_reject_hi: 1
  260.  
  261. gpu4:
  262. disabled: 1
  263.  
  264. # core_speed_0: 300
  265. # core_speed_1: 800
  266. core_speed_2: 888
  267. # mem_speed_0: 300
  268. # mem_speed_1: 300
  269. mem_speed_2: 300
  270. # core_voltage_0: 1.125
  271. # core_voltage_1: 1.125
  272. # core_voltage_2: 1.125000
  273.  
  274. fan_speed: 100
  275.  
  276. kernel: phatk2
  277. kernel_params: BFI_INT VECTORS FASTLOOP=false AGGRESSION=11
  278.  
  279. pool_file: /etc/bamt/pools
  280. pool_timeout: 180
  281.  
  282. monitor_temp_lo: 45
  283. monitor_temp_hi: 80
  284. monitor_load_lo: 80
  285. monitor_hash_lo: 125
  286. monitor_shares_lo: 1
  287.  
  288. gpu5:
  289. disabled: 0
  290.  
  291. # core_speed_0: 300
  292. # core_speed_1: 800
  293. core_speed_2: 888
  294. # mem_speed_0: 300
  295. # mem_speed_1: 300
  296. mem_speed_2: 300
  297. # core_voltage_0: 1.125
  298. # core_voltage_1: 1.125
  299. # core_voltage_2: 1.125000
  300.  
  301. fan_speed: 100
  302.  
  303. kernel: phatk2
  304. kernel_params: BFI_INT VECTORS FASTLOOP=false AGGRESSION=11
  305.  
  306. pool_file: /etc/bamt/pools
  307. pool_timeout: 180
  308.  
  309. monitor_temp_lo: 45
  310. monitor_temp_hi: 80
  311. monitor_load_lo: 80
  312. monitor_hash_lo: 125
  313. monitor_shares_lo: 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement