123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450 |
- #!/bin/bash
- function choice {
- if ! [ -f /home/wareck/.pass1 ]
- then
- echo -e "Linux backup/miner config v3.0 "
- echo -e ""
- if [ -f ~/b10.conf ]; then rm ~/b10.conf ; fi
- PS3='Please enter your choice: '
- options=("NVIDIA-RTX-LHR" "NVIDIA-RTX" "NVIDIA-GTX" "AMD" "Quit")
- select opt in "${options[@]}"
- do
- case $opt in
- "NVIDIA-RTX-LHR")
- Mode="NVIDIALHR"
- break
- ;;
- "NVIDIA-RTX")
- Mode="NVIDIARTX"
- break
- ;;
- "NVIDIA-GTX")
- Mode="NVIDIAGTX"
- break
- ;;
- "AMD")
- Mode="AMD"
- break
- ;;
- "Quit")
- exit
- break
- ;;
- *) echo "invalid option $REPLY";;
- esac
- done
- cat <<'EOF'>> ~/b10.conf
- Mode=XXX
- EOF
- sed -i "s/XXX/$Mode/g" ~/b10.conf
- touch ~/.pass1
- fi
- echo -e ""
- }
- function update_one {
- if ! [ -f /home/wareck/.pass2 ]
- then
- sudo timedatectl set-local-rtc 1 --adjust-system-clock
- sudo apt-get update -y
- sudo apt-get upgrade -y
- sudo apt-get dist-upgrade -y
- sudo apt-get install htop python3-pip openssh-server screen wakeonlan -y
- wget -c http://folivier.homelinux.org/cube/pack/gpu-miners.tar.xz
- cp ~/backup_users_win10/build/miners.tar.xz /home/wareck/
- cp ~/backup_users_win10/build/wallpaper.tar.xz /home/wareck/
- cp ~/backup_users_win10/build/hashcat.tar.xz /home/wareck/
- cd /home/wareck/
- tar xvfJ wallpaper.tar.xz
- sudo rm wallpaper.tar.xz
- touch ~/.pass2
- fi
- echo -n ""
- }
- function update_two {
- if [ $Mode = "NVIDIAGTX" ]
- then
- sudo apt install nvidia-cuda-toolkit nvidia-cuda-dev nvidia-driver-470 -y
- fi
- if [ $Mode = "NVIDIARTX" ]
- then
- sudo apt install nvidia-cuda-toolkit nvidia-cuda-dev nvidia-driver-510 -y
- fi
- if [ $Mode = "AMD" ]
- then
- cd /home/wareck
- echo -e ""
- echo -e "Install drivers:"
- 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
- wget -c -q --show-progress http://folivier.homelinux.org/cube/pack/linux-firmware.tar.xz
- tar xvfJ linux-firmware.tar.xz
- sudo cp /home/wareck/linux-firmware/amdgpu/* /lib/firmware/amdgpu/
- sudo rm -r -f /home/wareck/linux-firmware /home/wareck/linux-firmware.tar.xz
- sudo apt-get install /home/wareck/Build_Cube/pack/amdgpu-install_22.10.2.50102-1_all.deb -y
- sudo apt-get update
- sudo amdgpu-install --opencl=legacy --accept-eula -y
- sudo apt install ocl-icd-opencl-dev -y
- sudo apt install build-essential cmake git libuv1-dev libssl-dev libhwloc-dev libmicrohttpd-dev lm-sensors htop clinfo -y
- fi
- 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
- sudo apt install gcc-8 g++-8 mesa-utils libmicrohttpd-dev libcurl4-openssl-dev lvm2 llvm-dev gparted msr-tools nasm btrfs-progs -y
- sudo apt install libssl-dev p7zip-full -y
- sudo apt autoremove -y
- }
- function build_miner {
- #gnome-terminal -- htop
- cd ~
- if [ ! -d miners ];then mkdir miners;fi
- cd ~/miners
- echo ""
- git clone https://github.com/tpruvot/ccminer.git && echo ""
- git clone https://github.com/tpruvot/cpuminer-multi.git && echo ""
- git clone https://github.com/xmrig/xmrig.git && echo ""
- if [ $Mode = "NVIDIAGTX" ] || [ $Mode = "NVIDIARTX" ] || [ $Mode = "NVIDIALHR" ]
- then
- git clone https://github.com/xmrig/xmrig-nvidia.git && echo ""
- fi
- git clone https://github.com/uPlexa/xmrig-upx.git && echo ""
- git clone https://github.com/fireice-uk/xmr-stak.git && echo ""
- git clone https://github.com/fireice-uk/xmr-stak.git -b xmr-stak-rx xmr-stak-rx && echo ""
- if [ $Mode = "AMD" ]
- then
- git clone https://github.com/xmrig/xmrig-amd.git && echo ""
- fi
- cd ~
- tar xvfJ miners.tar.xz
- rm miners.tar.xz
- cd ~/miners
- wget -c https://download.open-mpi.org/release/hwloc/v2.5/hwloc-2.5.0.tar.bz2
- tar xvfj hwloc-2.5.0.tar.bz2
- cd hwloc-2.5.0
- ./configure
- make -j$(nproc)
- sudo make install
- cd ..
- rm -r hwloc-2.5.0
- rm hwloc-2.5.0.tar.bz2
- cd xmrig
- cd build
- cmake ..
- make -j$(nproc)
- cd ~/miners
- if [ $Mode = "NVIDIAGTX" ] || [ $Mode = "NVIDIARTX" ] || [ $Mode = "NVIDIALHR" ]
- then
- cd xmrig-nvidia
- cd build
- cmake .. -DCMAKE_C_COMPILER=gcc-8 -DCMAKE_CXX_COMPILER=g++-8
- make -j$(nproc)
- fi
- cd ~/miners
- cd xmrig-upx
- cd build
- cmake ..
- make -j$(nproc)
- cd ~/miners
- cd xmr-stak
- mkdir build
- cd build
- cmake .. -DCMAKE_C_COMPILER=gcc-8 -DCMAKE_CXX_COMPILER=g++-8
- make -j$(nproc)
- cd ~/miners
- cd cpuminer-multi
- ./build.sh
- if [ $Mode = "AMD" ]
- then
- cd ~/miners/xmrig-amd
- mkdir build
- cd build
- cmake ..
- make -j$(nproc)
- cd ~
- fi
- }
- function makesud_ {
- if ! sudo grep -q "wareck ALL=(ALL) NOPASSWD: ALL" /etc/sudoers
- then
- sudo cp /etc/sudoers /tmp/
- sudo chmod 777 /tmp/sudoers
- cat <<"EOF">> /tmp/sudoers
- wareck ALL=(ALL) NOPASSWD: ALL
- EOF
- sudo chmod 0644 /tmp/sudoers
- sudo cp /tmp/sudoers /etc/
- fi
- cat <<'EOF'>> wakeup_cube.sh
- sudo wakeonlan -i 192.168.1.100 D0:50:99:56:32:C8
- EOF
- chmod +x wakeup_cube.sh
- sudo mv wakeup_cube.sh /usr/local/bin
- }
- function liquidcontrol {
- if [ $Mode = "NVIDIAGTX" ] || [ $Mode = "NVIDIARTX" ] || [ $Mode = "NVIDIALHR" ]
- then
- sudo pip3 install liquidctl
- fi
- if [ $Mode = "NVIDIAGTX" ]
- then
- cat <<'EOF'>> liquidcfg.service
- [Unit]
- Description=AIO startup service
- [Service]
- Type=oneshot
- ExecStart=liquidctl initialize --match "smart device"
- ExecStart=liquidctl --match "smart device" set sync speed 55
- ExecStart=liquidctl --match "smart" set fan1 speed 90
- ExecStart=liquidctl --match "smart" set fan2 speed 90
- ExecStart=liquidctl --match "smart" set fan3 speed 90
- ExecStart=liquidctl --match "smart" set led color fixed eb0869
- [Install]
- WantedBy=default.target
- EOF
- sudo cp liquidcfg.service /etc/systemd/system/
- rm liquidcfg.service
- sudo systemctl daemon-reload
- sudo systemctl start liquidcfg
- sudo systemctl enable liquidcfg
- gsettings set org.gnome.desktop.background picture-uri /home/wareck/Images/wallpaperNvidia.jpg
- gsettings set org.gnome.shell.extensions.dash-to-dock dash-max-icon-size 32
- cat <<'EOF'>> zap
- #!/bin/bash
- dconf load /org/gnome/terminal/ < /usr/local/bin/zap2
- EOF
- sed -i "s/XXX/$zip/g" zap
- UUID=$(gsettings get org.gnome.Terminal.ProfilesList default | tr -d \')
- cat <<'EOF'>> zap2
- [legacy/profiles:/:XXX]
- default-size-columns=110
- font='Monospace 9'
- use-system-font=false
- use-theme-colors=false
- background-color='rgb(0,0,0)'
- background-transparency-percent=8
- EOF
- sed -i "s/XXX/$UUID/g" zap2
- chmod +x zap
- sudo cp zap /usr/local/bin
- sudo cp zap2 /usr/local/bin
- sudo rm zap
- sudo rm zap2
- bash -c /usr/local/bin/zap
- fi
- if [ $Mode = "NVIDIARTX" ] || [ $Mode = "NVIDIALHR" ]
- then
- cat <<'EOF'>> liquidcfg.service
- [Unit]
- Description=AIO startup service
- [Service]
- Type=oneshot
- ExecStart=liquidctl initialize --match "smart device"
- ExecStart=liquidctl --match "smart device" set sync speed 55
- ExecStart=liquidctl --match "smart" set fan1 speed 90
- ExecStart=liquidctl --match "smart" set fan2 speed 90
- ExecStart=liquidctl --match "smart" set fan3 speed 90
- ExecStart=liquidctl --match "smart" set led color fixed f32a9e
- [Install]
- WantedBy=default.target
- EOF
- sudo cp liquidcfg.service /etc/systemd/system/
- rm liquidcfg.service
- sudo systemctl daemon-reload
- sudo systemctl start liquidcfg
- sudo systemctl enable liquidcfg
- gsettings set org.gnome.desktop.background picture-uri /home/wareck/Images/875469.png
- gsettings set org.gnome.shell.extensions.dash-to-dock dash-max-icon-size 32
- fi
- if [ $Mode = "AMD" ]
- then
- gsettings set org.gnome.desktop.background picture-uri /home/wareck/Images/wallpaperAMD.jpg
- gsettings set org.gnome.shell.extensions.dash-to-dock dash-max-icon-size 32
- fi
- }
- function intro {
- clear
- print_centered "$(tput bold)$(tput setaf 6)"
- print_centered "▄▄▄▄· ▄▄▄· ▄▄· ▄ •▄ ▄• ▄▌ ▄▄▄· "
- print_centered "▐█ ▀█▪▐█ ▀█ ▐█ ▌▪█▌▄▌▪█▪██▌▐█ ▄█ "
- print_centered "▐█▀▀█▄▄█▀▀█ ██ ▄▄▐▀▀▄·█▌▐█▌ ██▀· "
- print_centered "██▄▪▐█▐█ ▪▐▌▐███▌▐█.█▌▐█▄█▌▐█▪·• "
- print_centered "·▀▀▀▀ ▀ ▀ ·▀▀▀ ·▀ ▀ ▀▀▀ .▀ "
- print_centered "▄▄▄▄· ▄• ▄▌▪ ▄▄▌ ·▄▄▄▄ ▄▄▄ .▄▄▄ "
- print_centered "▐█ ▀█▪█▪██▌██ ██• ██▪ ██ ▀▄.▀·▀▄ █·"
- print_centered "▐█▀▀█▄█▌▐█▌▐█·██▪ ▐█· ▐█▌▐▀▀▪▄▐▀▀▄ "
- print_centered "██▄▪▐█▐█▄█▌▐█▌▐█▌▐▌██. ██ ▐█▄▄▌▐█•█▌"
- print_centered "·▀▀▀▀ ▀▀▀ ▀▀▀.▀▀▀ ▀▀▀▀▀• ▀▀▀ .▀ ▀"
- print_centered "$(tput setaf 7)$(tput bold)"
- #print_centered "Autoconfig Ubuntu pour le backup des Users"
- if [ -z $Mode ];then source ~/b10.conf;fi
- if [ $Mode = "NVIDIALHR" ]
- then
- print_centered "NVIDIA-RTX + NZXT + windows 10"
- echo -n "$(tput setaf 9)$(tput blink)"
- print_centered "LHR mining"
- echo -n "$(tput setaf 7)$(tput sgr0)"
- fi
- if [ $Mode = "NVIDIAGTX" ]
- then
- print_centered "NVIDIA-GTX + NZXT + windows 10"
- fi
- if [ $Mode = "NVIDIARTX" ]
- then
- print_centered "NVIDIA-RTX + NZXT + windows 10"
- fi
- if [ $Mode = "AMD" ]
- then
- print_centered "AMD RX580 + windows 10"
- fi
- echo "$(tput setaf 7)"
- sleep 3
- }
- function print_centered {
- [[ $# == 0 ]] && return 1
- declare -i TERM_COLS="$(tput cols)"
- declare -i str_len="${#1}"
- [[ $str_len -ge $TERM_COLS ]] && {
- echo "$1";
- return 0;
- }
- declare -i filler_len="$(( (TERM_COLS - str_len) / 2 ))"
- [[ $# -ge 2 ]] && ch="${2:0:1}" || ch=" "
- filler=""
- for (( i = 0; i < filler_len; i++ )); do
- filler="${filler}${ch}"
- done
- printf "%s%s%s" "$filler" "$1" "$filler"
- [[ $(( (TERM_COLS - str_len) % 2 )) -ne 0 ]] && printf "%s" "${ch}"
- printf "\n"
- return 0
- }
- function password_hack {
- cd /home/wareck/
- git clone https://github.com/hashcat/hashcat.git
- cd /home/wareck/hashcat
- make -j$(nproc)
- cd /home/wareck/
- tar xvfJ hashcat.tar.xz
- rm /home/wareck/hashcat.tar.xz
- cd /home/wareck/
- echo -e ""
- git clone https://github.com/openwall/john.git
- cd john
- sudo apt-get -y install git build-essential libssl-dev zlib1g-dev
- sudo apt-get -y install yasm pkg-config libgmp-dev libpcap-dev libbz2-dev clang
- cd src
- ./configure
- make -s clean
- make -j$(nproc)
- }
- function outro {
- print_centered "$(tput setaf 3)$(tput bold)"
- print_centered "Système pret, reboot recommandé !"
- echo "$(tput setaf 7)"
- rm ~/.config/autostart/build.desktop
- rm ~/LHR1
- rm ~/LHR2
- rm ~/.pass1
- rm ~/.pass2
- rm ~/NVIDIA-Linux-x86_64-470.129.06.run
- if grep "/home/wareck/backup_users_win10/build/build_linux.sh" ~/.bashrc >/dev/null
- then
- sed -i '$ d' /home/wareck/.bashrc
- fi
- }
- function autorunme {
- if [ ! -d /home/wareck/.config/autostart ]
- then
- echo -e "$(tput setaf 10)\nInit install & autostart:$(tput sgr0)"
- mkdir /home/wareck/.config/autostart
- echo -e "Done."
- fi
- if [ ! -f /home/wareck/.config/autostart/build.desktop ]
- then
- cat <<'EOF'>> /home/wareck/.config/autostart/build.desktop
- [Desktop Entry]
- # VERSION=3.36.2
- Name=Terminal
- Comment=Use the command line
- Keywords=shell;prompt;command;commandline;cmd;
- TryExec=gnome-terminal
- Exec=gnome-terminal -- bash -c "/home/wareck/backup_users_win10/build/build_linux.sh"
- Icon=org.gnome.Terminal
- Type=Application
- Categories=GNOME;GTK;System;TerminalEmulator;
- StartupNotify=true
- X-GNOME-SingleWindow=false
- OnlyShowIn=GNOME;Unity;
- Actions=new-window;preferences;
- X-Ubuntu-Gettext-Domain=gnome-terminal
- [Desktop Action new-window]
- Name=New Window
- Exec=gnome-terminal --window
- [Desktop Action preferences]
- Name=Preferences
- Exec=gnome-terminal --preferences
- EOF
- chmod +x /home/wareck/.config/autostart/build.desktop
- fi
- if ! grep "build_linux.sh" ~/.bashrc >/dev/null
- then
- echo "/home/wareck/backup_users_win10/build/build_linux.sh" >> ~/.bashrc
- fi
- }
- function LHR {
- if [ ! -f ~/LHR1 ]
- then
- echo -e "Installation driver NVIDIA-470 LHR:"
- cd ~/
- wget -c -q --show-progress http://wareck.free.fr/genethos/NVIDIA-Linux-x86_64-470.129.06.run
- chmod +x ~/NVIDIA-Linux-x86_64-470.129.06.run
- touch ~/LHR1
- sudo systemctl isolate multi-user.target
- fi
- if [ -f ~/LHR1 ]
- then
- sudo modprobe -r nvidia-drm
- cd ~
- sudo ./NVIDIA-Linux-x86_64-470.129.06.run -a
- touch ~/LHR2
- if grep "/home/wareck/backup_users_win10/build/build_linux.sh" ~/.bashrc >/dev/null
- then
- sed -i '$ d' /home/wareck/.bashrc
- fi
- sudo systemctl start graphical.target
- fi
- }
- choice
- intro
- if [ $Mode = "NVIDIALHR" ]
- then
- autorunme
- if [ ! -f ~/LHR2 ];then LHR ;fi
- fi
- update_one
- liquidcontrol
- sleep 1
- update_two
- makesud_
- build_miner
- password_hack
- outro
|