Advertisement
Guest User

rig2

a guest
May 22nd, 2013
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 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-miner2
  29.  
  30. # loc is any additional string you wish to use to identify or group this rig
  31.  
  32. miner_loc: Rig_2
  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.  
  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. # HD 5770
  67.  
  68. gpu0:
  69.  
  70. disabled: 0
  71.  
  72. # core_speed: 950
  73. # mem_speed: 300
  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: 30
  84. monitor_temp_hi: 80
  85. monitor_load_lo: 100
  86. monitor_hash_lo: 0
  87. monitor_fan_lo: 2000
  88. monitor_reject_hi: 15
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement