diff options
-rw-r--r-- | mining/Makefile | 40 | ||||
-rwxr-xr-x | mining/bin/ati_temper (renamed from mining/user/bin/ati_temper) | 0 | ||||
-rwxr-xr-x | mining/bin/cleanup_tmp (renamed from mining/user/bin/cleanup_tmp) | 0 | ||||
-rwxr-xr-x | mining/bin/ensure-router (renamed from mining/user/bin/ensure-router) | 0 | ||||
-rwxr-xr-x | mining/bin/ensure-wlan0 (renamed from mining/user/bin/ensure-wlan0) | 0 | ||||
-rwxr-xr-x | mining/bin/newkey.sh | 15 |
6 files changed, 54 insertions, 1 deletions
diff --git a/mining/Makefile b/mining/Makefile index b867d469..21db5091 100644 --- a/mining/Makefile +++ b/mining/Makefile @@ -5,7 +5,7 @@ select-target: @cat Makefile format: cat README -install: configure +fix-linucCoin: configure apt-get install --yes lm-sensors tmux echo '#!/bin/bash' > /usr/bin/ati_license echo '#!/bin/sh' > /etc/init.d/live-boot @@ -16,3 +16,41 @@ install: configure configure: sensors-detect @cat CONFIGURE +archlinux: + @echo "!! ARCHLINUX Cruise Control Mining installer !!" + @echo "** adding main network profile" + cp /etc/network.d/examples/ethernet-dhcp /etc/network.d/main + echo 'POST_UP="sed -i \"1i nameserver 8.8.8.8\" /etc/resolv.conf"' >> /etc/network.d/main + @echo "** adding worker account" + grep -q worker /etc/passwd || adduser worker + @echo "** adding archlinuxfr to pacman.conf" + grep -q archlinuxfr /etc/pacman.conf || echo "[archlinuxfr]" >> /etc/pacman.conf && echo "Server = http://repo.archlinux.fr/x86_64" >> /etc/pacman.conf + + pacman --needed --noconfirm -Syu rsync git openssh yajl sudo tmux lm_sensors vim yaourt kernel26-headers + @echo "** installing tinc" + yaourt -S tinc + sed -i -e 's/.*\%wheel.*/%wheel ALL=(ALL) NOPASSWD: ALL/1' /etc/sudoers + @echo "** Installing ATI drivers" + [ "`yaourt -Q catalyst-utils`" ] || yaourt -S --noconfirm catalyst-utils + [ "`yaourt -Q catalyst-hook`" ] || yaourt -S --noconfirm catalyst-hook + [ "`yaourt -Q amdstream`" ] || yaourt -S --noconfirm amdstream + @echo "** installing X" + pacman --needed -S --noconfirm -f xorg-server xorg-apps xorg-appres xorg-xinit xautolock xlockmore xorg-fonts xorg-xhost xorg-xauth xterm rxvt-unicode xorg-twm + @echo "** copying bin folder" + cp -r bin /home/worker + @echo "** creating new .Xauthority for worker" + sudo -u worker /home/worker/bin/newkey.sh + @echo "configuring X" + @echo "!! ACTION REQUIRED, write down the first number of your ATI Graphics Adapter." + @echo "!! i will open /etc/X11/xorg.conf for you, change the BusID of every Device to the numbers you see here" + @echo "!!press enter to continue" + lspci|grep VGA + read + aticonfig --initial=dual-head + vim /etc/X11/xorg.conf + @echo "** creating xinitrc and start x" + echo 'setxkbmap -option terminate:ctrl_alt_bksp' > /home/worker/.xinitrc + echo 'xautolock -corners +-+- -locker "xlock -mode blank"&' >> /home/worker/.xinitrc + echo 'xterm &' >> /home/worker/.xinitrc + echo 'exec awesome' >> /home/worker/.xinitrc + @echo '!! start x with `xinit -- -auth ~/.Xauthority`' diff --git a/mining/user/bin/ati_temper b/mining/bin/ati_temper index 283a6024..283a6024 100755 --- a/mining/user/bin/ati_temper +++ b/mining/bin/ati_temper diff --git a/mining/user/bin/cleanup_tmp b/mining/bin/cleanup_tmp index e1395b19..e1395b19 100755 --- a/mining/user/bin/cleanup_tmp +++ b/mining/bin/cleanup_tmp diff --git a/mining/user/bin/ensure-router b/mining/bin/ensure-router index ec78f610..ec78f610 100755 --- a/mining/user/bin/ensure-router +++ b/mining/bin/ensure-router diff --git a/mining/user/bin/ensure-wlan0 b/mining/bin/ensure-wlan0 index 92839a13..92839a13 100755 --- a/mining/user/bin/ensure-wlan0 +++ b/mining/bin/ensure-wlan0 diff --git a/mining/bin/newkey.sh b/mining/bin/newkey.sh new file mode 100755 index 00000000..e71ab85b --- /dev/null +++ b/mining/bin/newkey.sh @@ -0,0 +1,15 @@ +#!/bin/sh + +auth=$HOME/.Xauthority +cp /dev/null $auth + +if [ "$1" = "-md5" ]; then + key=`pstat -pfS | md5` +else + key=`perl -e 'srand; printf int(rand(10000000000000))'` + key=$key$key +fi + +xauth add unix:0 . $key + +xauth add ${HOST}:0 . $key |