chia.sh 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. #!/bin/bash
  2. set -e
  3. Gui=Yes
  4. Version=2.3
  5. function print_centered {
  6. [[ $# == 0 ]] && return 1
  7. declare -i TERM_COLS="$(tput cols)"
  8. declare -i str_len="${#1}"
  9. [[ $str_len -ge $TERM_COLS ]] && {
  10. echo "$1";
  11. return 0;
  12. }
  13. declare -i filler_len="$(( (TERM_COLS - str_len) / 2 ))"
  14. [[ $# -ge 2 ]] && ch="${2:0:1}" || ch=" "
  15. filler=""
  16. for (( i = 0; i < filler_len; i++ )); do
  17. filler="${filler}${ch}"
  18. done
  19. printf "%s%s%s" "$filler" "$1" "$filler"
  20. [[ $(( (TERM_COLS - str_len) % 2 )) -ne 0 ]] && printf "%s" "${ch}"
  21. printf "\n"
  22. return 0
  23. }
  24. function jumpto
  25. {
  26. label=$1
  27. cmd=$(sed -n "/$label:/{:a;n;p;ba};" $0 | grep -v ':$')
  28. eval "$cmd"
  29. exit
  30. }
  31. print_centered "$(tput setaf 10)"
  32. print_centered " ______ __ __ "
  33. print_centered "| | |--.|__|.---.-."
  34. print_centered "| ---| || || _ |"
  35. print_centered "|______|__|__||__||___._|"
  36. echo -n "$(tput setaf 7)"
  37. print_centered "Toolkit for Chia v$Version"
  38. if [ $Gui = "Yes" ]
  39. then
  40. echo -n "$(tput setaf 3)"
  41. print_centered "Chia Gui Enabled"
  42. echo -n "$(tput setaf 7)"
  43. fi
  44. sleep 3
  45. echo -e "$(tput setaf 2)\nUpdate and install packages:$(tput sgr0)"
  46. sudo apt-get install python3-venv python3-distutils python3-dev libsodium-dev -y
  47. echo -e "\e[97mDone.\e[0m"
  48. jumpto END
  49. echo -e "$(tput setaf 2)\nDownload pack:$(tput sgr0)"
  50. wget -c -q --show-progress http://folivier.homelinux.org/cube/pack/chia-miner.tar.xz
  51. mv chia-miner.tar.xz /home/wareck/Build_Cube/pack/chia-miner.tar.xz
  52. echo -e "$(tput setaf 2)\nBuild Chia-Miner:$(tput sgr0)"
  53. cp ../pack/chia-miner.tar.xz /home/wareck/
  54. cd /home/wareck
  55. tar xvfJ chia-miner.tar.xz
  56. rm chia-miner.tar.xz
  57. cat <<'EOF'>> chia-miner.sh
  58. #!/bin/sh -e
  59. ### BEGIN INIT INFO
  60. # Provides: chiaminer
  61. # Required-Start: networking
  62. # Default-Start: 3 4 5
  63. # Default-Stop: 0 6
  64. ### END INIT INFO
  65. cd /home/wareck/chia-miner/
  66. #su wareck -c "screen -dmS chia-miner /home/wareck/chia-miner/hpool-miner-chia -config /home/wareck/chia-miner/config.yaml"
  67. if ping -c 1 192.168.1.11
  68. then
  69. sleep 3
  70. su wareck -c "screen -dmS chia-miner /home/wareck/chia-miner/hpool-miner-chia -config /home/wareck/chia-miner/config_proxy.yaml"
  71. else
  72. sleep 3
  73. su wareck -c "screen -dmS chia-miner /home/wareck/chia-miner/hpool-miner-chia -config /home/wareck/chia-miner/config.yaml"
  74. fi
  75. exit 0
  76. EOF
  77. chmod +x chia-miner.sh
  78. sudo cp chia-miner.sh /etc/init.d/chia-miner
  79. sudo update-rc.d chia-miner defaults
  80. sudo rm chia-miner.sh
  81. echo -e "\e[97mDone.\e[0m"
  82. echo -e "$(tput setaf 2)\nBuild Chia-Plotter (MadMax) :$(tput sgr0)"
  83. cd /home/wareck
  84. if [ ! -d chia-plotter ]
  85. then
  86. git clone https://github.com/madMAx43v3r/chia-plotter.git
  87. else
  88. cd /home/wareck/chia-plotter
  89. git pull
  90. fi
  91. cd /home/wareck/chia-plotter
  92. git submodule init
  93. git submodule update
  94. ./make_devel.sh
  95. cd build
  96. cat <<'EOF'>> go.sh
  97. #!/bin/bash
  98. ./chia_plot -n 1 -r 4 -u 128 -t /media/Nvme/ -2 /media/Nvme/ -d /media/Partage/Plots/ -p a99e72c49c5ed39bf793caab9e074a80dd61011a859e975842874aab47b783f9ce84282febe2ca275c0930149b67990a -f 8ba5acd276b45fd0f749ce195dcddcf0e63c3bf2e751e9e273faa0125075c36a11f2ee231e7cf74abed2920be97fc373
  99. EOF
  100. chmod +x go.sh
  101. cat <<'EOF'>> nft.sh
  102. #!/bin/bash
  103. ./chia_plot -n 1 -r 4 -u 128 -t /media/Nvme/ -2 /media/Nvme/ -d /media/Partage/Plots-nft/ -c xch18c2jp56msc47yzww25wcnzz5fk9y268zl3zh357kftsp0n7l6m8scyqg4e -f 8ba5acd276b45fd0f749ce195dcddcf0e63c3bf2e751e9e273faa0125075c36a11f2ee231e7cf74abed2920be97fc373
  104. EOF
  105. chmod +x nft.sh
  106. echo -e "\e[97mDone.\e[0m"
  107. echo -e "$(tput setaf 2)\nBuild Chia-Pos:$(tput sgr0)"
  108. cd /home/wareck/
  109. if [ ! -d /home/wareck/chia-pos ]
  110. then
  111. git clone https://github.com/Chia-Network/chiapos.git chia-pos
  112. cd /home/wareck/chia-pos
  113. else
  114. cd /home/wareck/chia-pos
  115. git pull
  116. fi
  117. if [ ! -d build ]; then mkdir build;fi
  118. cd build
  119. cmake ..
  120. make -j4
  121. echo -e "\e[97mDone.\e[0m"
  122. END:
  123. if [ $Gui = "Yes" ]
  124. then
  125. echo -e "$(tput setaf 2)\nBuild Chia-Gui :$(tput sgr0)"
  126. cd /home/wareck
  127. if [ ! -d /home/wareck/chia-blockchain ]
  128. then
  129. git clone https://github.com/Chia-Network/chia-blockchain.git -b latest --recurse-submodules
  130. cd chia-blockchain
  131. else
  132. cd chia-blockchain
  133. git pull
  134. fi
  135. sh install.sh
  136. source ./activate
  137. sh install-gui.sh
  138. fi
  139. echo -e "\n\e[97mEnd of process...\e[0m"