diff options
author | makefu <makefu@syntax-fehler.de> | 2011-06-18 17:06:11 +0200 |
---|---|---|
committer | makefu <makefu@syntax-fehler.de> | 2011-06-18 17:06:11 +0200 |
commit | 3352f847704718c43f346b781725e4ff8b2112de (patch) | |
tree | b17a933ad10322c68cdd02a2e6b450d62eae9ffd /mining | |
parent | 664d41605585e80ff1607536f4cbd4f765a1369d (diff) |
mining/: added all mining scripts and configs
mining/Makefile:
format - how to format the usb stick (or hard drive)
install - installs all necessary components, writes ati_license, copies
files in home dir
configure - how to configure the miner
mining/user/*: files to be dumped in the miners home directory
Diffstat (limited to 'mining')
-rw-r--r-- | mining/CONFIGURE | 5 | ||||
-rw-r--r-- | mining/Makefile | 11 | ||||
-rw-r--r-- | mining/user/.config/autostart/startup.desktop | 6 | ||||
-rw-r--r-- | mining/user/mining.odvr | 16 | ||||
-rw-r--r-- | mining/user/startup.sh | 16 |
5 files changed, 54 insertions, 0 deletions
diff --git a/mining/CONFIGURE b/mining/CONFIGURE new file mode 100644 index 00000000..6ddce386 --- /dev/null +++ b/mining/CONFIGURE @@ -0,0 +1,5 @@ +How to Configure +=============== + +1. change the mining-url in ~/startup.sh +2. sudo /etc/init.d/gdm restart diff --git a/mining/Makefile b/mining/Makefile new file mode 100644 index 00000000..c673ee3e --- /dev/null +++ b/mining/Makefile @@ -0,0 +1,11 @@ +.PHONY: all format install +select-target: + @echo "You are made of stupid!" +format: + cat README +install: + echo '#!/bin/bash' > /usr/bin/ati_license + echo 'sudo tar xvf /opt/AMD-APP-SDK-v2.4-lnx64/icd-registration.tgz -C /' >> /usr/bin/ati_license + cp -r user /home +configure: + cat CONFIGURE diff --git a/mining/user/.config/autostart/startup.desktop b/mining/user/.config/autostart/startup.desktop new file mode 100644 index 00000000..67c35ef8 --- /dev/null +++ b/mining/user/.config/autostart/startup.desktop @@ -0,0 +1,6 @@ +[Desktop Entry] +Name=LXDE Autostart +Exec=/home/user/startup.sh +Terminal=true +Type=Application +Categories=Configuration diff --git a/mining/user/mining.odvr b/mining/user/mining.odvr new file mode 100644 index 00000000..d6cf6fec --- /dev/null +++ b/mining/user/mining.odvr @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8"?> +<OVERDRIVE_PROFILE> + <PERFORMANCE_LEVEL level="2" gpu="90000" mem="30000" voltage="1040"/> + <PERFORMANCE_LEVEL level="1" gpu="55000" mem="30000" voltage="1000"/> + <PERFORMANCE_LEVEL level="0" gpu="15700" mem="30000" voltage="950"/> + <FAN_SETTING percentage="AUTO"/> + <FAN_CTRL enabled="yes"/> + <FAN_CTRL_CURVE type="0"/> + <FAN_CTRL_POINT nr="0" temperature="2000" percentage="0"/> + <FAN_CTRL_POINT nr="1" temperature="3400" percentage="9300"/> + <FAN_CTRL_POINT nr="2" temperature="4800" percentage="10000"/> + <FAN_CTRL_POINT nr="3" temperature="7000" percentage="10100"/> + <FAN_CTRL_POINT nr="4" temperature="10000" percentage="10100"/> + <MONITOR_SAMPLE_TIME interval="10"/> + <COLOR_PROFILE enabled="no" longitude="-13.000000" latitude="52.000000" color_temp_day="0" color_temp_night="0" transition="30"/> +</OVERDRIVE_PROFILE> diff --git a/mining/user/startup.sh b/mining/user/startup.sh new file mode 100644 index 00000000..c330b984 --- /dev/null +++ b/mining/user/startup.sh @@ -0,0 +1,16 @@ +sudo pkill xscreensaver +sudo pkill tmux +sleep 1 +export DISPLAY=:0 + +export URL="http://txgen_chinaman:lolwut@uk.btcguild.com:8332" +#export URL="http://txgen:qJrXefWX@bitcoinpool.com:8334" +slock & +tmux start-server +tmux new-session -d -s mining -n mining +printenv > /home/user/environment +tmux new-window -t mining:1 'AMDOverdriveCtrl -i 0 mining.ovdr' +tmux new-window -t mining:2 'AMDOverdriveCtrl -i 3 mining.ovdr' +sleep 5 +tmux new-window -t mining:3 "cd /opt/miners/phoenix; while sleep 1; do sudo python phoenix.py -u $URL -k phatk DEVICE=0 VECTORS BFI_INT WORKSIZE=256 AGGRESSION=12 FASTLOOPS=false;done" +tmux new-window -t mining:4 "cd /opt/miners/phoenix; while sleep 1;do sudo python phoenix.py -u $URL -k phatk DEVICE=1 VECTORS BFI_INT WORKSIZE=256 AGGRESSION=10 FASTLOOPS=false ; done" |