Skip to content

Instantly share code, notes, and snippets.

@icook
Last active August 29, 2015 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icook/10805376 to your computer and use it in GitHub Desktop.
Save icook/10805376 to your computer and use it in GitHub Desktop.
How to update BAMT to easily switch miners
  1. Change lines 386-390 in /opt/bamt/gpumon from

     if (${$conf}{'settings'}{'scrypt-adaptive-N'}) {
       system("screen -r vertminer");
     } else {
       system("screen -r cgminer");
     }
    

    to

     system("screen -r ${$conf}{'settings'}{'executable-name'}");
    

    This will allow you to easily change the name of the screen.

  2. Change lines 1459 in /opt/bamt/common.pl from

     $cmd = ''
    

    to

     $cmd = ${$conf}{'settings'}{'command'};
    

    Delete lines 1462-1468. This will allow you to easily change the start command.

  3. Now in your /etc/bamt/bamt.conf simply specify lines like the following

     command: /usr/bin/screen -d -m -S sgminer /opt/miners/sgminer/sgminer --api-listen --config /etc/bamt/sgminer.conf
     executable-name: sgminer
    

    to change your miner in use easily. Compile many different versions in /opt/miners and compare/contrast quickly

To add the latest SGMiner for example, do as follows:

sudo apt-get install autoconf opencl-headers libcurl4-openssl-dev libtool libncurses5-dev
cd /opt/miners
git clone https://github.com/veox/sgminer.git
cd sgminer
cp -R ../cgminer/ADL_SDK ./
libtoolize
autoreconf -ivf
CFLAGS="-O2 -Wall -march=native" ./configure
make

Now add a configuration to /etc/bamt/sgminer.conf

{
"pools" : [
	{
		"url" : "stratum+tcp://stratum.simplevert.com:3344",
		"user" : "VvAQomockqLj5uto6UKq7EXGAAxpkcWAio.Sapphire-R9270",
		"pass" : "x"
	}
]
,
    "algorithm": "adaptive-n-factor",
    "gpu-reorder": true,
    "gpu-fan": "50-100",
    "auto-fan": true,
    "temp-cutoff": "95",
    "temp-overheat": "83",
    "temp-target": "79",
    "xintensity": "4",
    "vectors": "1",
    "worksize": "256",
    "lookup-gap": "2",
    "thread-concurrency": "5121",
    "api-listen": true,
    "api-port": "4028",
    "api-allow": "W:127.0.0.1",
    "gpu-dyninterval": "7",
    "gpu-platform": "0",
    "gpu-threads": "2",
    "gpu-dyninterval": "7",
    "gpu-engine": "1125",
    "gpu-memclock": "1500",
    "gpu-powertune": "20",
    "log": "5",
    "no-pool-disable": true,
    "no-submit-stale": true,
    "queue": "0",
    "scan-time": "1",
    "expiry": "1",
    "scrypt": true,
    "shares": "0",
    "kernel-path": "/usr/local/bin"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment