buildit.sh 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. #!/bin/bash
  2. locat=$PWD
  3. echo "automated installation for oknode"
  4. echo "need several reboot"
  5. sleep 5
  6. if [ ! -f .step0 ]
  7. then
  8. if ! grep "#bfgminer" /etc/rc.local >/dev/null
  9. then
  10. sudo cp /etc/rc.local .
  11. bash -c 'sed -i -e "s/exit 0//g" rc.local'
  12. cat <<'EOF'>> rc.local.tmp
  13. #bfgminer
  14. #su - pi -c 'screen -dmS miner /home/pi/bfgminer/bfgminer --scrypt -o stratum+tcp://litecoinpool.org:3333 -u wareck.1 -p 1,d=128 -S all --set MLD:clock=660 --set ZUS:clock=328 --set ZUS:chips=6'
  15. #su - pi -c 'screen -dmS miner /home/pi/bfgminer/bfgminer --scrypt -o stratum+tcp://eu-01.miningrigrentals.com:3333/#skipcbcheck#xnsub -u wareck.262669 -p x -S all --set MLD:clock=660 --set ZUS:clock=328 --set ZUS:chips=6 --api-allow 127.0.0.1 --api-listen'
  16. su - pi -c 'screen -dmS miner /home/pi/bfgminer/bfgminer --scrypt -S all --set MLD:clock=660 --set ZUS:clock=328 --set ZUS:chips=6 --api-allow 127.0.0.1 --api-listen'
  17. exit 0
  18. EOF
  19. cat rc.local.tmp >> rc.local
  20. sudo cp rc.local /etc/rc.local
  21. rm rc.local
  22. rm rc.local.tmp
  23. cat <<'EOF'>> bfgminer.conf
  24. {
  25. "pools" : [
  26. {
  27. "url" : "stratum+tcp://eu-01.miningrigrentals.com:3333/#skipcbcheck#xnsub",
  28. "user" : "wareck.262669",
  29. "pass" : "x",
  30. "pool-priority" : "0"
  31. },
  32. {
  33. "url" : "stratum+tcp://eu-uk01.miningrigrentals.com:3333/#skipcbcheck#xnsub",
  34. "user" : "wareck.262669",
  35. "pass" : "x",
  36. "pool-priority" : "0"
  37. },
  38. {
  39. "url" : "stratum+tcp://hk-01.miningrigrentals.com:3333/#skipcbcheck#xnsub",
  40. "user" : "wareck.262669",
  41. "pass" : "x",
  42. "pool-priority" : "0"
  43. }
  44. ]
  45. ,
  46. "api-mcast-port" : "4028",
  47. "api-port" : "4028",
  48. "expiry" : "120",
  49. "expiry-lp" : "3600",
  50. "failover-switch-delay" : "300",
  51. "failover-only" : true,
  52. "log" : "20",
  53. "no-pool-disable" : true,
  54. "no-client-reconnect" : true,
  55. "no-show-processors" : true,
  56. "no-show-procs" : true,
  57. "no-unicode" : true,
  58. "queue" : "1",
  59. "quiet-work-updates" : true,
  60. "quiet-work-update" : true,
  61. "scan-time" : "60",
  62. "skip-security-checks" : "0",
  63. "submit-stale" : true,
  64. "temp-hysteresis" : "3",
  65. "shares" : 0,
  66. "kernel-path" : "/usr/local/share/bfgminer",
  67. "scan" : [
  68. "all"
  69. ]
  70. }
  71. EOF
  72. mkdir /home/pi/.bfgminer
  73. cp bfgminer.conf /home/pi/.bfgminer/
  74. rm bfgminer.conf
  75. fi
  76. cd $locat
  77. touch .step0
  78. fi
  79. if [ ! -f .step1 ]
  80. then
  81. cat <<'EOF'>> install_hotspot.sh
  82. apt-get update -y
  83. apt install dnsmasq -y
  84. systemctl stop dnsmasq
  85. echo "interface wlan0
  86. static ip_address=10.30.4.1/24
  87. nohook wpa_supplicant" >> /etc/dhcpcd.conf
  88. service dhcpcd restart
  89. mv /etc/dnsmasq.conf /etc/dnsmasq.conf.orig
  90. echo "interface=wlan0 # Use the require wireless interface - usually wlan0
  91. dhcp-range=10.30.4.2,10.30.4.20,255.255.255.0,24h" > /etc/dnsmasq.conf
  92. systemctl unmask dnsmasq
  93. systemctl enable dnsmasq
  94. systemctl restart dnsmasq
  95. if command -v rfkill &> /dev/null
  96. then
  97. rfkill unblock wlan
  98. fi
  99. apt-get install hostapd -y
  100. systemctl unmask hostapd
  101. systemctl enable hostapd
  102. ssid=Pyrale
  103. passphrase=Paypoo2016
  104. echo "interface=wlan0
  105. driver=nl80211
  106. ssid=$ssid
  107. hw_mode=g
  108. channel=7
  109. wmm_enabled=0
  110. macaddr_acl=0
  111. auth_algs=1
  112. ignore_broadcast_ssid=0
  113. wpa=2
  114. wpa_passphrase=$passphrase
  115. wpa_key_mgmt=WPA-PSK
  116. wpa_pairwise=TKIP
  117. rsn_pairwise=CCMP
  118. " > /etc/hostapd/hostapd.conf
  119. echo 'DAEMON_CONF="/etc/hostapd/hostapd.conf"' >> /etc/default/hostapd
  120. systemctl start hostapd
  121. cp /etc/sysctl.conf /etc/sysctl.bak
  122. echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf
  123. echo "up iptables-restore < /etc/iptables.ipv4.nat" >> /etc/network/interfaces
  124. sh -c "echo 1 > /proc/sys/net/ipv4/ip_forward"
  125. iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
  126. iptables -A FORWARD -i eth0 -o wlan0 -m state --state RELATED,ESTABLISHED -j ACCEPT
  127. iptables -A FORWARD -i wlan0 -o eth0 -j ACCEPT
  128. sh -c "iptables-save > /etc/iptables.ipv4.nat"
  129. sed -i '/exit 0/ i iptables-restore < /etc/iptables.ipv4.nat' /etc/rc.local
  130. EOF
  131. chmod +x install_hotspot.sh
  132. sudo ./install_hotspot.sh
  133. rm install_hotspot.sh
  134. touch .step1
  135. fi
  136. if [ ! -f .step2 ]
  137. then
  138. sudo apt-get install git build-essential autoconf automake \
  139. libtool pkg-config libcurl4-gnutls-dev libjansson-dev \
  140. uthash-dev libncursesw5-dev libudev-dev libusb-1.0-0-dev \
  141. libevent-dev libmicrohttpd-dev libhidapi-dev libgcrypt20-dev -y
  142. cd ~
  143. git clone https://github.com/wareck/bfgminer.git
  144. cd ~/bfgminer/
  145. sudo usermod -a -G dialout,plugdev $USER
  146. CFLAGS="-O2 -march=native" ./autogen.sh
  147. ./configure --enable-scrypt --enable-futurebit
  148. make
  149. sudo cp 70-bfgminer.rules /etc/udev/rules.d/
  150. cd $locat
  151. touch .step2
  152. fi
  153. if [ ! -f .step3 ]
  154. then
  155. echo "Download Okcash Node:"
  156. cd ~
  157. git clone https://github.com/wareck/okcash_node.git
  158. echo "Préconfiguration de Oknode"
  159. cd ~/okcash_node/hardware/
  160. ./led-status.sh
  161. ./fan-control.sh
  162. ./rtc.sh
  163. ./rtc.sh
  164. ./usb.sh
  165. cd $locat
  166. touch .step3
  167. echo "Reboot"
  168. exit
  169. fi
  170. if [ ! -f .step4 ]
  171. then
  172. echo "Build Okcash Node:"
  173. cd /home/pi/okcash_node/build_node.sh
  174. cd $locat
  175. touch .step4
  176. fi
  177. if [ ! -f .step5 ]
  178. then
  179. sudo mkdir /var/www/miner/
  180. sudo cp /home/pi/bfgminer/miner.php /var/www/miner/index.php
  181. cd $locat
  182. cat <<'EOF'>> default
  183. server {
  184. listen 80 default_server;
  185. listen [::]:80 default_server;
  186. root /var/www/node_status;
  187. index index.php index.html index.htm index.nginx-debian.html;
  188. server_name _;
  189. location / {
  190. try_files $uri $uri/ =404;
  191. }
  192. location ~ \.php$ {
  193. include snippets/fastcgi-php.conf;
  194. fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
  195. }
  196. location ~ /\.ht {
  197. deny all;
  198. }
  199. }
  200. server {
  201. listen 8080;
  202. root /var/www/miner;
  203. index index.php index.html index.htm index.nginx-debian.html;
  204. server_name _;
  205. location / {
  206. try_files $uri $uri/ =404;
  207. }
  208. location ~ \.php$ {
  209. include snippets/fastcgi-php.conf;
  210. fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
  211. }
  212. location ~ /\.ht {
  213. deny all;
  214. }
  215. }
  216. EOF
  217. sudo cp default /etc/nginx/sites-available/
  218. rm default
  219. sudo /etc/init.d/nginx restart
  220. touch .step5
  221. echo "Terminé !"
  222. fi