build_linux.sh 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  1. #!/bin/bash
  2. function choice {
  3. if ! [ -f /home/wareck/.pass1 ]
  4. then
  5. echo -e "Linux backup/miner config v3.0 "
  6. echo -e ""
  7. if [ -f ~/b10.conf ]; then rm ~/b10.conf ; fi
  8. PS3='Please enter your choice: '
  9. options=("NVIDIA-RTX-LHR" "NVIDIA-RTX" "NVIDIA-GTX" "AMD" "Quit")
  10. select opt in "${options[@]}"
  11. do
  12. case $opt in
  13. "NVIDIA-RTX-LHR")
  14. Mode="NVIDIALHR"
  15. break
  16. ;;
  17. "NVIDIA-RTX")
  18. Mode="NVIDIARTX"
  19. break
  20. ;;
  21. "NVIDIA-GTX")
  22. Mode="NVIDIAGTX"
  23. break
  24. ;;
  25. "AMD")
  26. Mode="AMD"
  27. break
  28. ;;
  29. "Quit")
  30. exit
  31. break
  32. ;;
  33. *) echo "invalid option $REPLY";;
  34. esac
  35. done
  36. cat <<'EOF'>> ~/b10.conf
  37. Mode=XXX
  38. EOF
  39. sed -i "s/XXX/$Mode/g" ~/b10.conf
  40. touch ~/.pass1
  41. fi
  42. echo -e ""
  43. }
  44. function update_one {
  45. if ! [ -f /home/wareck/.pass2 ]
  46. then
  47. sudo timedatectl set-local-rtc 1 --adjust-system-clock
  48. sudo apt-get update -y
  49. sudo apt-get upgrade -y
  50. sudo apt-get dist-upgrade -y
  51. sudo apt-get install htop python3-pip openssh-server screen wakeonlan -y
  52. wget -c http://folivier.homelinux.org/cube/pack/gpu-miners.tar.xz
  53. cp ~/backup_users_win10/build/miners.tar.xz /home/wareck/
  54. cp ~/backup_users_win10/build/wallpaper.tar.xz /home/wareck/
  55. cp ~/backup_users_win10/build/hashcat.tar.xz /home/wareck/
  56. cd /home/wareck/
  57. tar xvfJ wallpaper.tar.xz
  58. sudo rm wallpaper.tar.xz
  59. touch ~/.pass2
  60. fi
  61. echo -n ""
  62. }
  63. function update_two {
  64. if [ $Mode = "NVIDIAGTX" ]
  65. then
  66. sudo apt install nvidia-cuda-toolkit nvidia-cuda-dev nvidia-driver-470 -y
  67. fi
  68. if [ $Mode = "NVIDIARTX" ]
  69. then
  70. sudo apt install nvidia-cuda-toolkit nvidia-cuda-dev nvidia-driver-510 -y
  71. fi
  72. if [ $Mode = "AMD" ]
  73. then
  74. cd /home/wareck
  75. echo -e ""
  76. echo -e "Install drivers:"
  77. wget -c -q --show-progress http://folivier.homelinux.org/cube/pack/amdgpu-install_22.10.2.50102-1_all.deb -O /home/wareck/Build_Cube/pack/amdgpu-install_22.10.2.50102-1_all.deb
  78. wget -c -q --show-progress http://folivier.homelinux.org/cube/pack/linux-firmware.tar.xz
  79. tar xvfJ linux-firmware.tar.xz
  80. sudo cp /home/wareck/linux-firmware/amdgpu/* /lib/firmware/amdgpu/
  81. sudo rm -r -f /home/wareck/linux-firmware /home/wareck/linux-firmware.tar.xz
  82. sudo apt-get install /home/wareck/Build_Cube/pack/amdgpu-install_22.10.2.50102-1_all.deb -y
  83. sudo apt-get update
  84. sudo amdgpu-install --opencl=legacy --accept-eula -y
  85. sudo apt install ocl-icd-opencl-dev -y
  86. sudo apt install build-essential cmake git libuv1-dev libssl-dev libhwloc-dev libmicrohttpd-dev lm-sensors htop clinfo -y
  87. fi
  88. sudo apt install samba cifs-utils mdadm git build-essential libtool pkg-config automake autoconf ethtool net-tools openvpn filezilla libuv1-dev libuvc-dev cmake git nmap -y
  89. sudo apt install gcc-8 g++-8 mesa-utils libmicrohttpd-dev libcurl4-openssl-dev lvm2 llvm-dev gparted msr-tools nasm btrfs-progs -y
  90. sudo apt install libssl-dev p7zip-full -y
  91. sudo apt autoremove -y
  92. }
  93. function build_miner {
  94. #gnome-terminal -- htop
  95. cd ~
  96. if [ ! -d miners ];then mkdir miners;fi
  97. cd ~/miners
  98. echo ""
  99. git clone https://github.com/tpruvot/ccminer.git && echo ""
  100. git clone https://github.com/tpruvot/cpuminer-multi.git && echo ""
  101. git clone https://github.com/xmrig/xmrig.git && echo ""
  102. if [ $Mode = "NVIDIAGTX" ] || [ $Mode = "NVIDIARTX" ] || [ $Mode = "NVIDIALHR" ]
  103. then
  104. git clone https://github.com/xmrig/xmrig-nvidia.git && echo ""
  105. fi
  106. git clone https://github.com/uPlexa/xmrig-upx.git && echo ""
  107. git clone https://github.com/fireice-uk/xmr-stak.git && echo ""
  108. git clone https://github.com/fireice-uk/xmr-stak.git -b xmr-stak-rx xmr-stak-rx && echo ""
  109. if [ $Mode = "AMD" ]
  110. then
  111. git clone https://github.com/xmrig/xmrig-amd.git && echo ""
  112. fi
  113. cd ~
  114. tar xvfJ miners.tar.xz
  115. rm miners.tar.xz
  116. cd ~/miners
  117. wget -c https://download.open-mpi.org/release/hwloc/v2.5/hwloc-2.5.0.tar.bz2
  118. tar xvfj hwloc-2.5.0.tar.bz2
  119. cd hwloc-2.5.0
  120. ./configure
  121. make -j$(nproc)
  122. sudo make install
  123. cd ..
  124. rm -r hwloc-2.5.0
  125. rm hwloc-2.5.0.tar.bz2
  126. cd xmrig
  127. cd build
  128. cmake ..
  129. make -j$(nproc)
  130. cd ~/miners
  131. if [ $Mode = "NVIDIAGTX" ] || [ $Mode = "NVIDIARTX" ] || [ $Mode = "NVIDIALHR" ]
  132. then
  133. cd xmrig-nvidia
  134. cd build
  135. cmake .. -DCMAKE_C_COMPILER=gcc-8 -DCMAKE_CXX_COMPILER=g++-8
  136. make -j$(nproc)
  137. fi
  138. cd ~/miners
  139. cd xmrig-upx
  140. cd build
  141. cmake ..
  142. make -j$(nproc)
  143. cd ~/miners
  144. cd xmr-stak
  145. mkdir build
  146. cd build
  147. cmake .. -DCMAKE_C_COMPILER=gcc-8 -DCMAKE_CXX_COMPILER=g++-8
  148. make -j$(nproc)
  149. cd ~/miners
  150. cd cpuminer-multi
  151. ./build.sh
  152. if [ $Mode = "AMD" ]
  153. then
  154. cd ~/miners/xmrig-amd
  155. mkdir build
  156. cd build
  157. cmake ..
  158. make -j$(nproc)
  159. cd ~
  160. fi
  161. }
  162. function makesud_ {
  163. if ! sudo grep -q "wareck ALL=(ALL) NOPASSWD: ALL" /etc/sudoers
  164. then
  165. sudo cp /etc/sudoers /tmp/
  166. sudo chmod 777 /tmp/sudoers
  167. cat <<"EOF">> /tmp/sudoers
  168. wareck ALL=(ALL) NOPASSWD: ALL
  169. EOF
  170. sudo chmod 0644 /tmp/sudoers
  171. sudo cp /tmp/sudoers /etc/
  172. fi
  173. cat <<'EOF'>> wakeup_cube.sh
  174. sudo wakeonlan -i 192.168.1.100 D0:50:99:56:32:C8
  175. EOF
  176. chmod +x wakeup_cube.sh
  177. sudo mv wakeup_cube.sh /usr/local/bin
  178. }
  179. function liquidcontrol {
  180. if [ $Mode = "NVIDIAGTX" ] || [ $Mode = "NVIDIARTX" ] || [ $Mode = "NVIDIALHR" ]
  181. then
  182. sudo pip3 install liquidctl
  183. fi
  184. if [ $Mode = "NVIDIAGTX" ]
  185. then
  186. cat <<'EOF'>> liquidcfg.service
  187. [Unit]
  188. Description=AIO startup service
  189. [Service]
  190. Type=oneshot
  191. ExecStart=liquidctl initialize --match "smart device"
  192. ExecStart=liquidctl --match "smart device" set sync speed 55
  193. ExecStart=liquidctl --match "smart" set fan1 speed 90
  194. ExecStart=liquidctl --match "smart" set fan2 speed 90
  195. ExecStart=liquidctl --match "smart" set fan3 speed 90
  196. ExecStart=liquidctl --match "smart" set led color fixed eb0869
  197. [Install]
  198. WantedBy=default.target
  199. EOF
  200. sudo cp liquidcfg.service /etc/systemd/system/
  201. rm liquidcfg.service
  202. sudo systemctl daemon-reload
  203. sudo systemctl start liquidcfg
  204. sudo systemctl enable liquidcfg
  205. gsettings set org.gnome.desktop.background picture-uri /home/wareck/Images/wallpaperNvidia.jpg
  206. gsettings set org.gnome.shell.extensions.dash-to-dock dash-max-icon-size 32
  207. cat <<'EOF'>> zap
  208. #!/bin/bash
  209. dconf load /org/gnome/terminal/ < /usr/local/bin/zap2
  210. EOF
  211. sed -i "s/XXX/$zip/g" zap
  212. UUID=$(gsettings get org.gnome.Terminal.ProfilesList default | tr -d \')
  213. cat <<'EOF'>> zap2
  214. [legacy/profiles:/:XXX]
  215. default-size-columns=110
  216. font='Monospace 9'
  217. use-system-font=false
  218. use-theme-colors=false
  219. background-color='rgb(0,0,0)'
  220. background-transparency-percent=8
  221. EOF
  222. sed -i "s/XXX/$UUID/g" zap2
  223. chmod +x zap
  224. sudo cp zap /usr/local/bin
  225. sudo cp zap2 /usr/local/bin
  226. sudo rm zap
  227. sudo rm zap2
  228. bash -c /usr/local/bin/zap
  229. fi
  230. if [ $Mode = "NVIDIARTX" ] || [ $Mode = "NVIDIALHR" ]
  231. then
  232. cat <<'EOF'>> liquidcfg.service
  233. [Unit]
  234. Description=AIO startup service
  235. [Service]
  236. Type=oneshot
  237. ExecStart=liquidctl initialize --match "smart device"
  238. ExecStart=liquidctl --match "smart device" set sync speed 55
  239. ExecStart=liquidctl --match "smart" set fan1 speed 90
  240. ExecStart=liquidctl --match "smart" set fan2 speed 90
  241. ExecStart=liquidctl --match "smart" set fan3 speed 90
  242. ExecStart=liquidctl --match "smart" set led color fixed f32a9e
  243. [Install]
  244. WantedBy=default.target
  245. EOF
  246. sudo cp liquidcfg.service /etc/systemd/system/
  247. rm liquidcfg.service
  248. sudo systemctl daemon-reload
  249. sudo systemctl start liquidcfg
  250. sudo systemctl enable liquidcfg
  251. gsettings set org.gnome.desktop.background picture-uri /home/wareck/Images/875469.png
  252. gsettings set org.gnome.shell.extensions.dash-to-dock dash-max-icon-size 32
  253. fi
  254. if [ $Mode = "AMD" ]
  255. then
  256. gsettings set org.gnome.desktop.background picture-uri /home/wareck/Images/wallpaperAMD.jpg
  257. gsettings set org.gnome.shell.extensions.dash-to-dock dash-max-icon-size 32
  258. fi
  259. }
  260. function intro {
  261. clear
  262. print_centered "$(tput bold)$(tput setaf 6)"
  263. print_centered "▄▄▄▄· ▄▄▄· ▄▄· ▄ •▄ ▄• ▄▌ ▄▄▄· "
  264. print_centered "▐█ ▀█▪▐█ ▀█ ▐█ ▌▪█▌▄▌▪█▪██▌▐█ ▄█ "
  265. print_centered "▐█▀▀█▄▄█▀▀█ ██ ▄▄▐▀▀▄·█▌▐█▌ ██▀· "
  266. print_centered "██▄▪▐█▐█ ▪▐▌▐███▌▐█.█▌▐█▄█▌▐█▪·• "
  267. print_centered "·▀▀▀▀ ▀ ▀ ·▀▀▀ ·▀ ▀ ▀▀▀ .▀ "
  268. print_centered "▄▄▄▄· ▄• ▄▌▪ ▄▄▌ ·▄▄▄▄ ▄▄▄ .▄▄▄ "
  269. print_centered "▐█ ▀█▪█▪██▌██ ██• ██▪ ██ ▀▄.▀·▀▄ █·"
  270. print_centered "▐█▀▀█▄█▌▐█▌▐█·██▪ ▐█· ▐█▌▐▀▀▪▄▐▀▀▄ "
  271. print_centered "██▄▪▐█▐█▄█▌▐█▌▐█▌▐▌██. ██ ▐█▄▄▌▐█•█▌"
  272. print_centered "·▀▀▀▀ ▀▀▀ ▀▀▀.▀▀▀ ▀▀▀▀▀• ▀▀▀ .▀ ▀"
  273. print_centered "$(tput setaf 7)$(tput bold)"
  274. #print_centered "Autoconfig Ubuntu pour le backup des Users"
  275. if [ -z $Mode ];then source ~/b10.conf;fi
  276. if [ $Mode = "NVIDIALHR" ]
  277. then
  278. print_centered "NVIDIA-RTX + NZXT + windows 10"
  279. echo -n "$(tput setaf 9)$(tput blink)"
  280. print_centered "LHR mining"
  281. echo -n "$(tput setaf 7)$(tput sgr0)"
  282. fi
  283. if [ $Mode = "NVIDIAGTX" ]
  284. then
  285. print_centered "NVIDIA-GTX + NZXT + windows 10"
  286. fi
  287. if [ $Mode = "NVIDIARTX" ]
  288. then
  289. print_centered "NVIDIA-RTX + NZXT + windows 10"
  290. fi
  291. if [ $Mode = "AMD" ]
  292. then
  293. print_centered "AMD RX580 + windows 10"
  294. fi
  295. echo "$(tput setaf 7)"
  296. sleep 3
  297. }
  298. function print_centered {
  299. [[ $# == 0 ]] && return 1
  300. declare -i TERM_COLS="$(tput cols)"
  301. declare -i str_len="${#1}"
  302. [[ $str_len -ge $TERM_COLS ]] && {
  303. echo "$1";
  304. return 0;
  305. }
  306. declare -i filler_len="$(( (TERM_COLS - str_len) / 2 ))"
  307. [[ $# -ge 2 ]] && ch="${2:0:1}" || ch=" "
  308. filler=""
  309. for (( i = 0; i < filler_len; i++ )); do
  310. filler="${filler}${ch}"
  311. done
  312. printf "%s%s%s" "$filler" "$1" "$filler"
  313. [[ $(( (TERM_COLS - str_len) % 2 )) -ne 0 ]] && printf "%s" "${ch}"
  314. printf "\n"
  315. return 0
  316. }
  317. function password_hack {
  318. cd /home/wareck/
  319. git clone https://github.com/hashcat/hashcat.git
  320. cd /home/wareck/hashcat
  321. make -j$(nproc)
  322. cd /home/wareck/
  323. tar xvfJ hashcat.tar.xz
  324. rm /home/wareck/hashcat.tar.xz
  325. cd /home/wareck/
  326. echo -e ""
  327. git clone https://github.com/openwall/john.git
  328. cd john
  329. sudo apt-get -y install git build-essential libssl-dev zlib1g-dev
  330. sudo apt-get -y install yasm pkg-config libgmp-dev libpcap-dev libbz2-dev clang
  331. cd src
  332. ./configure
  333. make -s clean
  334. make -j$(nproc)
  335. }
  336. function outro {
  337. print_centered "$(tput setaf 3)$(tput bold)"
  338. print_centered "Système pret, reboot recommandé !"
  339. echo "$(tput setaf 7)"
  340. rm ~/.config/autostart/build.desktop
  341. rm ~/LHR1
  342. rm ~/LHR2
  343. rm ~/.pass1
  344. rm ~/.pass2
  345. rm ~/NVIDIA-Linux-x86_64-470.129.06.run
  346. if grep "/home/wareck/backup_users_win10/build/build_linux.sh" ~/.bashrc >/dev/null
  347. then
  348. sed -i '$ d' /home/wareck/.bashrc
  349. fi
  350. }
  351. function autorunme {
  352. if [ ! -d /home/wareck/.config/autostart ]
  353. then
  354. echo -e "$(tput setaf 10)\nInit install & autostart:$(tput sgr0)"
  355. mkdir /home/wareck/.config/autostart
  356. echo -e "Done."
  357. fi
  358. if [ ! -f /home/wareck/.config/autostart/build.desktop ]
  359. then
  360. cat <<'EOF'>> /home/wareck/.config/autostart/build.desktop
  361. [Desktop Entry]
  362. # VERSION=3.36.2
  363. Name=Terminal
  364. Comment=Use the command line
  365. Keywords=shell;prompt;command;commandline;cmd;
  366. TryExec=gnome-terminal
  367. Exec=gnome-terminal -- bash -c "/home/wareck/backup_users_win10/build/build_linux.sh"
  368. Icon=org.gnome.Terminal
  369. Type=Application
  370. Categories=GNOME;GTK;System;TerminalEmulator;
  371. StartupNotify=true
  372. X-GNOME-SingleWindow=false
  373. OnlyShowIn=GNOME;Unity;
  374. Actions=new-window;preferences;
  375. X-Ubuntu-Gettext-Domain=gnome-terminal
  376. [Desktop Action new-window]
  377. Name=New Window
  378. Exec=gnome-terminal --window
  379. [Desktop Action preferences]
  380. Name=Preferences
  381. Exec=gnome-terminal --preferences
  382. EOF
  383. chmod +x /home/wareck/.config/autostart/build.desktop
  384. fi
  385. if ! grep "build_linux.sh" ~/.bashrc >/dev/null
  386. then
  387. echo "/home/wareck/backup_users_win10/build/build_linux.sh" >> ~/.bashrc
  388. fi
  389. }
  390. function LHR {
  391. if [ ! -f ~/LHR1 ]
  392. then
  393. echo -e "Installation driver NVIDIA-470 LHR:"
  394. cd ~/
  395. wget -c -q --show-progress http://wareck.free.fr/genethos/NVIDIA-Linux-x86_64-470.129.06.run
  396. chmod +x ~/NVIDIA-Linux-x86_64-470.129.06.run
  397. touch ~/LHR1
  398. sudo systemctl isolate multi-user.target
  399. fi
  400. if [ -f ~/LHR1 ]
  401. then
  402. sudo modprobe -r nvidia-drm
  403. cd ~
  404. sudo ./NVIDIA-Linux-x86_64-470.129.06.run -a
  405. touch ~/LHR2
  406. if grep "/home/wareck/backup_users_win10/build/build_linux.sh" ~/.bashrc >/dev/null
  407. then
  408. sed -i '$ d' /home/wareck/.bashrc
  409. fi
  410. sudo systemctl start graphical.target
  411. fi
  412. }
  413. choice
  414. intro
  415. if [ $Mode = "NVIDIALHR" ]
  416. then
  417. autorunme
  418. if [ ! -f ~/LHR2 ];then LHR ;fi
  419. fi
  420. update_one
  421. liquidcontrol
  422. sleep 1
  423. update_two
  424. makesud_
  425. build_miner
  426. password_hack
  427. outro