Skip to content

Instantly share code, notes, and snippets.

@zcshiner
Last active August 29, 2015 14:06
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 zcshiner/925e2f95722e248ac7e3 to your computer and use it in GitHub Desktop.
Save zcshiner/925e2f95722e248ac7e3 to your computer and use it in GitHub Desktop.
Start ccminer
#!/bin/bash
### Startup Script for sp's ccminer fork
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Got that snippet from: http://stackoverflow.com/a/246128
POOLURL="stratum+tcp://us-east01.miningrigrentals.com:3333"
USERNAME="squadbox.14783"
PASSWORD="x"
echo "Executing from $DIR! "
$DIR/ccminer -a quark -o $POOLURL -u $USERNAME -p $PASSWORD
#!/bin/bash
### Startup Script for djm34's ccminer fork
## https://github.com/djm34/ccminer
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Got that snippet from: http://stackoverflow.com/a/246128
POOLURL="stratum+tcp://birdspool.no-ip.org:5041"
USERNAME="DTnH7ML1ohskUX1aSpequfSLQHk32VUpXY"
PASSWORD="x"
echo "Executing from $DIR! "
$DIR/ccminer -a qubit -o $POOLURL -u $USERNAME -p $PASSWORD -f 128
# NOTE: This pool doesnt have vardif. Use -f to manually set it.
# via https://bitcointalk.org/index.php?topic=167229.msg8816957#msg8816957
#!/bin/bash
### Startup Script for djm34's ccminer fork
## https://github.com/djm34/ccminer
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Got that snippet from: http://stackoverflow.com/a/246128
POOLURL="stratum+tcp://stratum.dgb.theblocksfactory.com:9000"
USERNAME="squadbox.1"
PASSWORD="x"
echo "Executing from $DIR! "
$DIR/ccminer -a qubit -o $POOLURL -u $USERNAME -p $PASSWORD -f 256
# NOTE: Qubit is weird. Use -f 256 to divide difficulty appropriately
# via https://bitcointalk.org/index.php?topic=167229.msg8816957#msg8816957
#!/bin/bash
### Startup Script for tpruvot's ccminer fork
## https://github.com/tpruvot/ccminer
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Got that snippet from: http://stackoverflow.com/a/246128
POOLURL="stratum+tcp://stratum.ftc.theblocksfactory.com:3333"
USERNAME="squadbox.1"
PASSWORD="x"
echo "Executing from $DIR! "
$DIR/ccminer -a x11 -o $POOLURL -u $USERNAME -p $PASSWORD
#!/bin/bash
### Startup Script for sp's ccminer fork
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Got that snippet from: http://stackoverflow.com/a/246128
POOLURL="stratum+tcp://yaamp.com:4033"
USERNAME="1MtN96JpSt58Zcn4xm77BqhSAhsczGLoAQ"
PASSWORD="xx"
echo "Executing from $DIR! "
$DIR/ccminer -a quark -o $POOLURL -u $USERNAME -p $PASSWORD
#!/bin/bash
### Startup Script for djm34's ccminer fork
## https://github.com/djm34/ccminer
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Got that snippet from: http://stackoverflow.com/a/246128
POOLURL="stratum+tcp://xcnpool.1gh.com:7333"
USERNAME="CWXa9hVBUZyfQYQ9wgb1PTYzdsaqCDY9eE"
PASSWORD="x"
echo "Executing from $DIR! "
$DIR/ccminer -a m7 -o $POOLURL -u $USERNAME -p $PASSWORD
#!/bin/bash
### Startup Script for djm34's ccminer fork
## https://github.com/djm34/ccminer
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Got that snippet from: http://stackoverflow.com/a/246128
POOLURL="stratum+tcp://stratum.xcn.theblocksfactory.com:8000"
USERNAME="squadbox.1"
PASSWORD="x"
echo "Executing from $DIR! "
$DIR/ccminer -a m7 -o $POOLURL -u $USERNAME -p $PASSWORD
#!/bin/bash
### Startup Script for djm34's ccminer fork
## https://github.com/djm34/ccminer
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Got that snippet from: http://stackoverflow.com/a/246128
POOLURL="stratum+tcp://yaamp.com:3533"
USERNAME="1MtN96JpSt58Zcn4xm77BqhSAhsczGLoAQ"
PASSWORD="xx"
echo "Executing from $DIR! "
$DIR/ccminer -a x11 -o $POOLURL -u $USERNAME -p $PASSWORD
#!/bin/bash
### Startup Script for vehere's neoscrypt gpuminer fork
## https://github.com/vehre/neo-gpuminer/
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Got that snippet from: http://stackoverflow.com/a/246128
POOLURL="stratum+tcp://stratum.ftc.theblocksfactory.com:3333"
USERNAME="squadbox.1"
PASSWORD="x"
GPU_MAX_ALLOC_PERCENT=100
$DIR/cgminer --neoscrypt -I 14 -w 128 -o $POOLURL -u $USERNAME -p $PASSWORD ### ~ 50s Kh/s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment