Advertisement
Guest User

Rig1

a guest
May 22nd, 2013
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 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-miner1
  29.  
  30. # loc is any additional string you wish to use to identify or group this rig
  31.  
  32. miner_loc: Rig_1
  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: 10
  54.  
  55.  
  56.  
  57. # GPU Configurtation
  58.  
  59. # You'll need one gpuX: section per GPU installed. Not sure what's installed,
  60. # or the order? Open a root shell and type: aticonfig --list-adapters
  61. #
  62. # You can delete gpu sections if you don't have that many cards.. or add more
  63. # if you find a way to run them
  64.  
  65.  
  66.  
  67. # HD6870
  68.  
  69. gpu0:
  70. disabled: 0
  71.  
  72. core_speed: 970
  73. mem_speed: 500
  74.  
  75. fan_speed: 90
  76.  
  77. kernel: phatk2
  78. kernel_params: BFI_INT VECTORS FASTLOOP=false AGGRESSION=16 WORKSIZE=256
  79.  
  80. pool_file: /etc/bamt/pools
  81. pool_timeout: 180
  82.  
  83. monitor_temp_lo: 35
  84. monitor_temp_hi: 80
  85. monitor_load_lo: 60
  86. monitor_hash_lo: 125
  87. monitor_fan_lo: 2000
  88. monitor_reject_hi: 10
  89.  
  90.  
  91. # HD 5770
  92.  
  93. gpu1:
  94. disabled: 0
  95.  
  96. core_speed: 950
  97. mem_speed: 300
  98.  
  99. fan_speed: 90
  100.  
  101. kernel: phatk2
  102. kernel_params: BFI_INT VECTORS FASTLOOP=false AGGRESSION=16 WORKSIZE=256
  103.  
  104. pool_file: /etc/bamt/pools
  105. pool_timeout: 180
  106.  
  107. monitor_temp_lo: 35
  108. monitor_temp_hi: 80
  109. monitor_load_lo: 60
  110. monitor_hash_lo: 125
  111. monitor_fan_lo: 2000
  112. monitor_reject_hi: 10
  113.  
  114. # HD 5770
  115.  
  116. gpu2:
  117. disabled: 0
  118.  
  119. core_speed: 970
  120. mem_speed: 300
  121.  
  122. fan_speed: 90
  123.  
  124. kernel: phatk2
  125. kernel_params: BFI_INT VECTORS FASTLOOP=false AGGRESSION=16 WORKSIZE=256
  126.  
  127. pool_file: /etc/bamt/pools
  128. pool_timeout: 180
  129.  
  130. monitor_temp_lo: 35
  131. monitor_temp_hi: 80
  132. monitor_load_lo: 60
  133. monitor_hash_lo: 125
  134. monitor_fan_lo: 2000
  135. monitor_reject_hi: 10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement