Advertisement
Guest User

bamt.conf.camill_a

a guest
Nov 24th, 2012
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.59 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-miner
  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: 1
  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: alexcamill@gmail.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.  
  67. gpu0:
  68.  
  69.   # remove disabled: or set it to 0 to actually use this card..
  70.  
  71.   disabled: 0
  72.  
  73.  
  74.   # overclocking.. all are optional  
  75.  
  76.   # optional command to execute prior to overclocking
  77.   # any valid command (or the path to a script) is fine
  78.  
  79.   #pre_oc_cmd: aticonfig --od-enable --odsc=1000,200
  80.  
  81.  
  82.   # (core/mem)_X = the value to set for this profile (0-2)
  83.   # Profile 2 is used while mining, but setting values
  84.   # in profile 2 that are *lower* than the values in the other
  85.   # profiles is not allowed on some GPUs, so you have to adjust
  86.   # the other profiles as well.
  87.   # For instance, to get 300Mhz mem clock on my 5830s, I have
  88.   # to set all 3 profiles to 300.
  89.  
  90.   core_speed: 1000
  91.   mem_speed: 850
  92.   core_voltage: 1.187000
  93.  
  94.   #core_speed_0: 1000
  95.   #core_speed_1: 1000
  96.   #core_speed_2: 1000
  97.  
  98.   #mem_speed_0: 700
  99.   #mem_speed_1: 700
  100.   #mem_speed_2: 700
  101.  
  102.   #core_voltage_0: 1.187
  103.   #core_voltage_1: 1.187
  104.   #core_voltage_2: 1.187
  105.  
  106.   # recommend to set and forget fan, preferably at 100
  107.  
  108.   fan_speed: 42
  109.  
  110.   # optional command to execute after overclocking
  111.   # post_oc_cmd:
  112.  
  113.  
  114.   # Phoenix mining setup (see full example for how to use cgminer instead)
  115.   # We strongly recommend you use phoenix at, least until you are familiar
  116.   # with BAMT
  117.  
  118.   # kernel to use.. one of:  phatk phatk2 poclbm
  119.   # if in doubt, use phatk2
  120.  
  121.   kernel: phatk2
  122.  
  123.   # phoenix style kernel params.  *do not* include DEVICE=x, otherwise
  124.   # exactly same as any phoenix setup.  
  125.   # if in doubt: BFI_INT VECTORS AGGRESSION=11
  126.   # (though 9 on GPU0 often makes using the GUI more pleasant)
  127.  
  128.   kernel_params: -k phatk2 platform=0 device=0 VECTORS BFI_INT AGRESSION=6 worksize=128 FASTLOOP=false
  129.  
  130.  
  131.   # Pool file
  132.   # IMPORTANT: pool_file must contain a list of pool URLs.. one at least, more if
  133.   # you like.  You can share the same file for all GPUs, or have one for each.
  134.   # Miner will start with first URL in file, however if no shares are accepted
  135.   # for any reason in (pool_timeout) seconds, the miner will move to next URL
  136.   # in the file.  Wraps around to first URL when last one fails.
  137.   # You can also set pool specific values, see the example pools file.
  138.   # if in doubt: /etc/bamt/pools
  139.  
  140.   pool_file: /etc/bamt/pools
  141.  
  142.   # max time to allow phoenix to run without finding a share..
  143.   # exceed this and we kill phoenix, start a new instance with
  144.   # next line in pools file
  145.  
  146.   pool_timeout: 180
  147.  
  148.  
  149.  
  150.   # monitoring limits, used by email alerts and gpumon
  151.   # an alert is generated if the current value goes below a 'lo'
  152.   # or above a 'hi'.
  153.  
  154.   # GPU temp sensor reading (in C)
  155.   monitor_temp_lo: 45
  156.   monitor_temp_hi: 80
  157.  
  158.   # GPU load (in %)
  159.   monitor_load_lo: 80
  160.  
  161.   # average hashrate (in mh/s)
  162.   monitor_hash_lo: 125
  163.  
  164.   # fam rpm (in rpm)
  165.   monitor_fan_lo: 2000
  166.  
  167.   # effective reject rate (in % of total)
  168.   monitor_reject_hi: 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement