chia.sh 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436
  1. #!/bin/bash
  2. set -e
  3. Version=5.0.0
  4. Gui=No #can be Yes No or Only
  5. MadMax=Yes
  6. GigaHorse=Yes
  7. BladeBit=Yes
  8. ChiaPos=No
  9. ChiaService=Yes
  10. Miner=Yes
  11. ChiaProxy=Yes
  12. function print_centered {
  13. [[ $# == 0 ]] && return 1
  14. declare -i TERM_COLS="$(tput cols)"
  15. declare -i str_len="${#1}"
  16. [[ $str_len -ge $TERM_COLS ]] && {
  17. echo "$1";
  18. return 0;
  19. }
  20. declare -i filler_len="$(( (TERM_COLS - str_len) / 2 ))"
  21. [[ $# -ge 2 ]] && ch="${2:0:1}" || ch=" "
  22. filler=""
  23. for (( i = 0; i < filler_len; i++ )); do
  24. filler="${filler}${ch}"
  25. done
  26. printf "%s%s%s" "$filler" "$1" "$filler"
  27. [[ $(( (TERM_COLS - str_len) % 2 )) -ne 0 ]] && printf "%s" "${ch}"
  28. printf "\n"
  29. return 0
  30. }
  31. function jumpto
  32. {
  33. label=$1
  34. cmd=$(sed -n "/$label:/{:a;n;p;ba};" $0 | grep -v ':$')
  35. eval "$cmd"
  36. exit
  37. }
  38. function simplify_config {
  39. error_flag=0
  40. Gui=${Gui^^}
  41. ChiaService=${ChiaService^^}
  42. MadMax=${MadMax^^}
  43. GigaHorse=${GigaHorse^^}
  44. BladeBit=${BladeBit^^}
  45. ChiaPos=${ChiaPos^^}
  46. Miner=${Miner^^}
  47. ChiaProxy=${ChiaProxy^^}
  48. if [[ "$Gui" == "YES" ]] || [[ "$Gui" == "NO" ]] || [[ "$Gui" == "ONLY" ]];then error_flag=$((error_flag+0));else error_flag=$((error_flag+1)) ;fi
  49. if [[ "$MadMax" == "YES" ]] || [[ "$MadMax" = "NO" ]];then error_flag=$((error_flag+0));else error_flag=$((error_flag+1)) ;fi
  50. if [[ "$GigaHorse" == "YES" ]] || [[ "$GigaHorse" == "NO" ]];then error_flag=$((error_flag+0));else error_flag=$((error_flag+1));fi
  51. if [[ "$BladeBit" == "YES" ]] || [[ "$BladeBit" == "NO" ]];then error_flag=$((error_flag+0));else error_flag=$((error_flag+1));fi
  52. if [[ "$ChiaPos" == "YES" ]] || [[ "$ChiaPos" == "NO" ]];then error_flag=$((error_flag+0));else error_flag=$((error_flag+1));fi
  53. if [[ "$ChiaService" == "YES" ]] || [[ "$ChiaService" == "NO" ]];then error_flag=$((error_flag+0));else error_flag=$((error_flag+1));fi
  54. if [[ "$Miner" == "YES" ]] || [[ "$Miner" == "NO" ]];then error_flag=$((error_flag+0));else error_flag=$((error_flag+1));fi
  55. if [[ "$ChiaProxy" == "YES" ]] || [[ "$ChiaProxy" == "NO" ]];then error_flag=$((error_flag+0));else error_flag=$((error_flag+1));fi
  56. echo $error_flag
  57. }
  58. function intro_ {
  59. print_centered "$(tput setaf 10)"
  60. print_centered " ______ __ __ "
  61. print_centered "| | |--.|__|.---.-."
  62. print_centered "| ---| || || _ |"
  63. print_centered "|______|__|__||__||___._|"
  64. echo -n "$(tput sgr0)"
  65. print_centered "Toolkit for Chia v$Version"
  66. echo ""
  67. if [ $error_flag -ne 0 ]
  68. then
  69. echo -n "$(tput setaf 1 ;tput blink;tput bold)"
  70. print_centered "Config Error !!! $error_flag"
  71. echo -n "$(tput sgr0)"
  72. exit 0
  73. fi
  74. case $Gui in
  75. YES)
  76. echo -n "$(tput setaf 41)"
  77. print_centered "Blockchain wallet + Gui"
  78. echo -n "$(tput setaf 42)"
  79. print_centered "Chia Plotting Tools"
  80. echo -n "$(tput sgr0)"
  81. ;;
  82. NO)
  83. echo -n "$(tput setaf 11)"
  84. print_centered "Chia Plotting Tools"
  85. echo -n "$(tput sgr0)"
  86. ;;
  87. ONLY)
  88. echo -n "$(tput setaf 41)"
  89. print_centered "Blockchain + GUI wallet Only"
  90. echo -n "$(tput sgr0)"
  91. ;;
  92. *)
  93. echo -n "$(tput setaf 1 ;tput blink;tput bold)"
  94. print_centered "Config Error !!!"
  95. echo -n "$(tput sgr0)"
  96. exit 0
  97. ;;
  98. esac
  99. if [ $Gui = "NO" ] || [ $Gui = "YES" ]
  100. then
  101. case $ChiaService in
  102. YES)
  103. echo -n "$(tput setaf 43)"
  104. print_centered "Mining service Enabled"
  105. echo -n "$(tput sgr0)"
  106. ;;
  107. esac
  108. case $ChiaProxy in
  109. YES)
  110. echo -n "$(tput setaf 44)"
  111. print_centered "Hpool x-Proxy Enabled"
  112. echo -n "$(tput sgr0)"
  113. ;;
  114. esac
  115. fi
  116. sleep 2
  117. if ! [ -d /home/wareck/chia ];then mkdir /home/wareck/chia;fi
  118. }
  119. function update_ {
  120. echo -e "$(tput setaf 10)\nUpdate and install packages:$(tput sgr0)"
  121. extend="libgomp1 ocl-icd-opencl-dev libgmp-dev libnuma-dev"
  122. sudo apt-get install python3-venv python3-distutils python3-dev libsodium-dev $extend -y
  123. echo -e "\e[97mDone.\e[0m"
  124. }
  125. function chia_plotter {
  126. echo -e "$(tput setaf 10)\nBuild Chia-Plotter (MadMax4ever) :$(tput sgr0)"
  127. sleep 1
  128. cd /home/wareck/chia/
  129. if [ ! -d chia-plotter ]
  130. then
  131. git clone https://github.com/madMAx43v3r/chia-plotter.git
  132. else
  133. cd /home/wareck/chia/chia-plotter
  134. git pull
  135. fi
  136. cd /home/wareck/chia/chia-plotter
  137. git submodule init
  138. git submodule update
  139. ./make_devel.sh
  140. cd build
  141. cat <<'EOF'>> go.sh
  142. #!/bin/bash
  143. POOL=a99e72c49c5ed39bf793caab9e074a80dd61011a859e975842874aab47b783f9ce84282febe2ca275c0930149b67990a
  144. FARM=8ba5acd276b45fd0f749ce195dcddcf0e63c3bf2e751e9e273faa0125075c36a11f2ee231e7cf74abed2920be97fc373
  145. OUT=/media/Partage/Plots/
  146. ./chia_plot -p $POOL -f $FARM -n 1 -r 6 -u 128 -t /nvme0/plotting/ -2 /nvme0/plotting/ -d $OUT
  147. EOF
  148. chmod +x go.sh
  149. cat <<'EOF'>> nft.sh
  150. #!/bin/bash
  151. POOL=a99e72c49c5ed39bf793caab9e074a80dd61011a859e975842874aab47b783f9ce84282febe2ca275c0930149b67990a
  152. FARM=8ba5acd276b45fd0f749ce195dcddcf0e63c3bf2e751e9e273faa0125075c36a11f2ee231e7cf74abed2920be97fc373
  153. OUT=/media/Partage/Plots-nft/
  154. ./chia_plot -p $POOL -f $FARM -n 1 -r 4 -u 128 -t /nvme0/plotting/ -2 /nvme1/plotting/ -d $OUT
  155. EOF
  156. chmod +x nft.sh
  157. echo -e "\e[97mDone.\e[0m"
  158. }
  159. function bladebit {
  160. echo -e "$(tput setaf 10)\nBuild Bladebit v2 :$(tput sgr0)"
  161. sleep 1
  162. cd /home/wareck/chia
  163. if [ ! -d bladebit ]
  164. then
  165. git clone https://github.com/Chia-Network/bladebit.git
  166. fi
  167. cd /home/wareck/chia/bladebit/
  168. if [ ! -d build ];then mkdir build;fi
  169. cd build
  170. sed -i "s/FatalIf( cfg.compressionLevel >/\/\/FatalIf( cfg.compressionLevel/g" /home/wareck/chia/bladebit/src/main.cpp
  171. cmake ..
  172. make -j6
  173. cat <<'EOF'>> cuda.sh
  174. #!/bin/bash
  175. ./bladebit_cuda \
  176. -c xch10yjksfwm8s66z32qy35x950608hk8l67vmsur4rwpaanpkd6ks3qhfw5nk \
  177. -f 8ba5acd276b45fd0f749ce195dcddcf0e63c3bf2e751e9e273faa0125075c36a11f2ee231e7cf74abed2920be97fc373 \
  178. diskplot -t1 /nvme0/plotting/ -t2 /nvme1/plotting/ /farm/farm0/Plots/
  179. EOF
  180. cat <<'EOF'>> flex.sh
  181. #!/bin/bash
  182. CRT=xch10yjksfwm8s66z32qy35x950608hk8l67vmsur4rwpaanpkd6ks3qhfw5nk
  183. FRM=8ba5acd276b45fd0f749ce195dcddcf0e63c3bf2e751e9e273faa0125075c36a11f2ee231e7cf74abed2920be97fc373
  184. OUT=/media/Partage/Plots-nft/
  185. ./bladebit -f $FRM -c $CRT diskplot --cache 100G -t1 /nvme1/plotting/ -t2 /nvme1/plotting/ $OUT
  186. EOF
  187. cat <<'EOF'>> cuda_h9.sh
  188. #!/bin/bash
  189. POOL=a99e72c49c5ed39bf793caab9e074a80dd61011a859e975842874aab47b783f9ce84282febe2ca275c0930149b67990a
  190. FARM=8ba5acd276b45fd0f749ce195dcddcf0e63c3bf2e751e9e273faa0125075c36a11f2ee231e7cf74abed2920be97fc373
  191. OUT=/farm/farm4/Plots
  192. ./bladebit_cuda -p $POOL -f $FARM -z 7 cudaplot -d 0 --disk-16 -t1 /nvme0/plotting $OUT
  193. EOF
  194. chmod +x cuda.sh
  195. chmod +x flex.sh
  196. chmod +x cuda_h9.sh
  197. echo -e "\e[97mDone.\e[0m"
  198. }
  199. function gigahorse {
  200. echo -e "$(tput setaf 10)\nMadMax4ever GigaHorse:$(tput sgr0)"
  201. sleep 1
  202. if [ -d /home/wareck/chia/chia-gigahorse ]
  203. then
  204. cd /home/wareck/chia/chia-gigahorse
  205. git pull
  206. else
  207. cd /home/wareck/chia/
  208. git clone https://github.com/madMAx43v3r/chia-gigahorse.git
  209. fi
  210. echo "generate bash files..."
  211. sudo cp ~/chia/chia-gigahorse/plot-sink/linux/x86_64/* /usr/local/bin/
  212. sudo cp ~/chia/chia-gigahorse/cpu-plotter/linux/x86_64/* /usr/local/bin/
  213. cd ~
  214. if [ -f distrib_chia.sh ];then sudo rm distrib_chia.sh;fi
  215. if [ -f /usr/local/bin/distrib_chia.sh ];then sudo rm /usr/local/bin/distrib_chia.sh;fi
  216. cat <<'EOF'>> distrib_chia.sh
  217. #!/bin/bash
  218. echo "IP : $(hostname -I)"
  219. chia_plot_sink -p 1447 /farm/farm0/Plots-nft/ /farm/farm1/Plots-nft/ /farm/farm2/Plots-nft/ /farm/farm3/Plots-nft/ /farm/farm4/Plots-nft/ /Partage/Plots-nft/
  220. EOF
  221. chmod +x distrib_chia.sh
  222. sudo mv distrib_chia.sh /usr/local/bin/
  223. cat <<'EOF'>> ~/go.sh
  224. #!/bin/bash
  225. CRT=xch10yjksfwm8s66z32qy35x950608hk8l67vmsur4rwpaanpkd6ks3qhfw5nk
  226. FRM=8ba5acd276b45fd0f749ce195dcddcf0e63c3bf2e751e9e273faa0125075c36a11f2ee231e7cf74abed2920be97fc373
  227. OUT=@192.168.1.100
  228. ./chia_plot -c $CRT -f $FRM -G -r 6 -z 1447 -C 8 -n -1 -t /nvme0/plotting/ -2 /nvme1/plotting/ -d $OUT
  229. EOF
  230. chmod +x ~/go.sh
  231. cp ~/go.sh ~/chia/chia-gigahorse/cpu-plotter/linux/x86_64/
  232. rm ~/go.sh
  233. echo -e "\e[97mDone.\e[0m"
  234. }
  235. function chiapos {
  236. echo -e "$(tput setaf 10)\nBuild Chia-Pos:$(tput sgr0)"
  237. sleep 1
  238. cd /home/wareck/chia
  239. if [ ! -d /home/wareck/chia/chia-pos ]
  240. then
  241. git clone https://github.com/Chia-Network/chiapos.git chia-pos
  242. cd /home/wareck/chia/chia-pos
  243. else
  244. cd /home/wareck/chia/chia-pos
  245. git pull
  246. fi
  247. if [ ! -d build ]; then mkdir build;fi
  248. cd build
  249. cmake ..
  250. cmake --build . -- -j 6
  251. echo -e "\e[97mDone.\e[0m"
  252. }
  253. function miner_ {
  254. echo -e "$(tput setaf 10)\nChia-Miner (hpool):$(tput sgr0)"
  255. sleep 1
  256. wget -c -q --show-progress http://folivier.homelinux.org/cube/pack/chia-miner.tar.xz -O /home/wareck/Build_Cube/pack/chia-miner.tar.xz
  257. cp /home/wareck/Build_Cube/pack/chia-miner.tar.xz /home/wareck/miners
  258. cd /home/wareck/miners
  259. tar xvfJ chia-miner.tar.xz
  260. rm chia-miner.tar.xz
  261. echo -e "\e[97mDone.\e[0m"
  262. }
  263. function chia_blockchain {
  264. echo -e "$(tput setaf 10)\nBuild Chia-blockchain & Gui :$(tput sgr0)"
  265. sleep 1
  266. cd /home/wareck/chia
  267. if [ ! -d /home/wareck/chia/chia-blockchain ]
  268. then
  269. git clone https://github.com/Chia-Network/chia-blockchain.git -b latest --recurse-submodules
  270. cd chia-blockchain
  271. else
  272. cd chia-blockchain
  273. git pull
  274. fi
  275. sh install.sh
  276. source ./activate
  277. sh install-gui.sh
  278. echo -e "\e[97mDone.\e[0m"
  279. }
  280. function chia_proxy {
  281. echo -e "$(tput setaf 10)\nChia-X-Proxy (Cuda):$(tput sgr0)"
  282. wget -c -q --show-progress http://folivier.homelinux.org/cube/pack/chia-x-proxy.tar.xz -O /home/wareck/Build_Cube/pack/chia-x-proxy.tar.xz
  283. cp /home/wareck/Build_Cube/pack/chia-x-proxy.tar.xz /home/wareck/
  284. cd /home/wareck/chia/
  285. tar xvfJ /home/wareck/chia-x-proxy.tar.xz
  286. rm /home/wareck/chia-x-proxy.tar.xz
  287. sleep 1
  288. cat <<'EOF'>> x-proxy.service
  289. [Unit]
  290. Description=x-proxy
  291. After=network.target
  292. StartLimitIntervalSec=500
  293. StartLimitBurst=5
  294. [Service]
  295. #Restart=on-failure
  296. #RestartSec=5s
  297. WorkingDirectory=/home/wareck/chia/x-proxy/
  298. User=wareck
  299. Group=adm
  300. ExecStart=/usr/bin/screen -DmS x-proxy /home/wareck/chia/x-proxy/x-proxy-v1.9.1 -config /home/wareck/chia/x-proxy/config.yaml
  301. ExecStop=/usr/bin/screen -S x-proxy -X quit
  302. LimitNOFILE=999999
  303. [Install]
  304. WantedBy=multi-user.target
  305. EOF
  306. sudo mv x-proxy.service /etc/systemd/system/x-proxy.service
  307. sudo systemctl daemon-reload
  308. sudo systemctl start x-proxy.service
  309. sudo systemctl enable x-proxy.service
  310. echo -e "\e[97mDone.\e[0m"
  311. }
  312. function service_old {
  313. echo -e "$(tput setaf 10)\nInstall chia-miner service (hpool) :$(tput sgr0)"
  314. sleep 1
  315. echo "Generation du fichier /etc/init.d/chia-miner"
  316. cat <<'EOF'>> chia-miner.sh
  317. #!/bin/sh
  318. ### BEGIN INIT INFO
  319. # Provides: chiaminer
  320. # Required-Start: networking
  321. # Default-Start: 3 4 5
  322. # Default-Stop: 0 6
  323. ### END INIT INFO
  324. case "$1" in
  325. start)
  326. if pgrep -x "hpool-miner-chia" > /dev/null
  327. then
  328. sudo killall -9 hpool-miner-chia | true
  329. fi
  330. su wareck -c "screen -dmS chia-miner /home/wareck/miners/chia-miner/hpool-miner-chia -config /home/wareck/miners/chia-miner/config.yaml"
  331. ;;
  332. stop)
  333. if pgrep -x "hpool-miner-chia" > /dev/null
  334. then
  335. sudo killall -9 hpool-miner-chia | true
  336. fi
  337. ;;
  338. restart)
  339. $0 stop
  340. $0 start
  341. ;;
  342. *)
  343. echo "Usage: /etc/init.d/chia-miner {start|restart|stop}"
  344. exit 1
  345. ;;
  346. esac
  347. exit 0
  348. EOF
  349. chmod +x chia-miner.sh
  350. sudo cp chia-miner.sh /etc/init.d/chia-miner
  351. sudo update-rc.d chia-miner defaults
  352. sleep 1
  353. sudo /etc/init.d/chia-miner start
  354. sudo rm chia-miner.sh
  355. echo -e "\e[97mDone.\e[0m"
  356. }
  357. function service_ {
  358. echo -e "$(tput setaf 10)\nInstall chia-miner service (hpool) :$(tput sgr0)"
  359. sleep 1
  360. cat <<'EOF'>> chia-miner.service
  361. [Unit]
  362. Description=HPool miner
  363. After=network.target
  364. StartLimitIntervalSec=500
  365. StartLimitBurst=5
  366. [Service]
  367. #Restart=on-failure
  368. #RestartSec=5s
  369. WorkingDirectory=/home/wareck/miners/chia-miner/
  370. User=wareck
  371. Group=adm
  372. ExecStart=/usr/bin/screen -DmS hpool-miner /home/wareck/miners/chia-miner/hpool-miner-chia -config /home/wareck/miners/chia-miner/config.yaml
  373. ExecStop=/usr/bin/screen -S hpool-miner -X quit
  374. LimitNOFILE=999999
  375. [Install]
  376. WantedBy=multi-user.target
  377. EOF
  378. sudo mv chia-miner.service /etc/systemd/system/hpool-miner.service
  379. sudo systemctl daemon-reload
  380. sudo systemctl start hpool-miner.service
  381. sudo systemctl enable hpool-miner.service
  382. echo -e "\e[97mDone.\e[0m"
  383. }
  384. function cmake_ {
  385. if [ $BladeBit = "YES" ]
  386. then
  387. pids=""
  388. /home/wareck/Build_Cube/options/tools/_cmake.sh & pids="$pids $!"
  389. wait $pids
  390. fi
  391. }
  392. simplify_config
  393. intro_
  394. update_
  395. cmake_
  396. case $Gui in
  397. ONLY)
  398. chia_blockchain
  399. ;;
  400. *)
  401. if [ $GigaHorse = "YES" ];then gigahorse;fi
  402. if [ $MadMax = "YES" ];then chia_plotter;fi
  403. if [ $BladeBit = "YES" ];then bladebit;fi
  404. if [ $ChiaPos = "YES" ];then chiapos;fi
  405. if [ $Miner = "YES" ];then miner_;fi
  406. if [ $ChiaService = "YES" ];then service_;fi
  407. if [ $ChiaProxy = "YES" ]; then chia_proxy;fi
  408. if [ $Gui = "YES" ]; then chia_blockchain;fi
  409. ;;
  410. esac
  411. echo -e "\n\e[97mEnd of process...\e[0m"