cuda.sh 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. #!/bin/bash
  2. echo -e "$(tput bold)$(tput setaf 11)Linux CUDA toolkit installer v1.1:$(tput setaf 7)"
  3. function intro {
  4. wget -c -q --show-progress http://folivier.homelinux.org/cube/pack/gpu-miners.tar.xz -O ~/gpu-miners.tar.xz
  5. wget -c -q --show-progress http://folivier.homelinux.org/bkpwinbuilder/pack/hashcat.tar.xz -O ~/hashcat.tar.xz
  6. wget -c -q --show-progress http://folivier.homelinux.org/bkpwinbuilder/pack/miners.tar.xz -O ~/miners.tar.xz
  7. if [ -d ~/hashcat ];then rm -r -f ~/hashcat;fi
  8. if [ -d ~/miners ];then rm -r -f ~/miners;fi
  9. #wget -c https://developer.download.nvidia.com/compute/cuda/11.8.0/local_installers/cuda_11.8.0_520.61.05_linux.run
  10. wget -c -q --show-progress https://developer.download.nvidia.com/compute/cuda/11.1.0/local_installers/cuda_11.1.0_455.23.05_linux.run
  11. #chmod +x cuda_11.8.0_520.61.05_linux.run
  12. chmod +x cuda_11.1.0_455.23.05_linux.run
  13. #sudo cuda_11.8.0_520.61.05_linux.run
  14. sudo ./cuda_11.1.0_455.23.05_linux.run
  15. rm cuda_11.1.0_455.23.05_linux.run
  16. }
  17. function build_miner {
  18. echo -e "$(tput bold)$(tput setaf 11)Rebuild miners with new CUDA ToolKit: $(tput setaf 7)"
  19. cd ~
  20. wget -c -q --show-progress http://folivier.homelinux.org/bkpwinbuilder/pack/miners.tar.xz -O ~/miners.tar.xz
  21. if [ ! -d miners ];then mkdir miners ; else rm -r -f miners ;fi
  22. mkdir ~/miners
  23. cd ~/miners/
  24. git clone https://github.com/tpruvot/ccminer.git && echo ""
  25. git clone https://github.com/tpruvot/cpuminer-multi.git && echo ""
  26. git clone https://github.com/xmrig/xmrig.git && echo ""
  27. git clone https://github.com/xmrig/xmrig-nvidia.git && echo ""
  28. git clone https://github.com/uPlexa/xmrig-upx.git && echo ""
  29. git clone https://github.com/fireice-uk/xmr-stak.git && echo ""
  30. git clone https://github.com/fireice-uk/xmr-stak.git -b xmr-stak-rx xmr-stak-rx && echo ""
  31. cd ~
  32. if ! grep -q "modded" /usr/include/CL/cl_version.h
  33. then
  34. sudo cp /usr/include/CL/cl_version.h /home/wareck/
  35. echo "/*modded*/" > cl_version_m.h
  36. echo "#define CL_TARGET_OPENCL_VERSION 220" >> cl_version_m.h
  37. cat cl_version.h >>cl_version_m.h
  38. rm cl_version.h
  39. mv cl_version_m.h cl_version.h
  40. sudo cp /home/wareck/cl_version.h /usr/include/CL/cl_version.h
  41. fi
  42. tar xvfJ miners.tar.xz
  43. rm miners.tar.xz
  44. cd ~/miners
  45. wget -c https://download.open-mpi.org/release/hwloc/v2.8/hwloc-2.8.0.tar.bz2
  46. tar xvfj hwloc-2.8.0.tar.bz2
  47. cd hwloc-2.8.0
  48. ./configure
  49. make -j$(nproc)
  50. sudo make install
  51. sudo ldconfig
  52. cd ..
  53. rm -r hwloc-2.8.0
  54. rm hwloc-2.8.0.tar.bz2
  55. echo ""
  56. cd xmrig
  57. if [ ! -d build ];then mkdir build;fi
  58. cd build
  59. cmake ..
  60. make -j$(nproc)
  61. cd ~/miners
  62. echo ""
  63. cd xmrig-nvidia
  64. cd build
  65. cmake .. -DCMAKE_C_COMPILER=gcc-8 -DCMAKE_CXX_COMPILER=g++-8
  66. make -j$(nproc)
  67. echo ""
  68. cd ~/miners
  69. cd xmrig-upx
  70. cd build
  71. cmake ..
  72. make -j$(nproc)
  73. echo ""
  74. cd ~/miners
  75. cd xmr-stak
  76. mkdir build
  77. cd build
  78. cmake .. -DCMAKE_C_COMPILER=gcc-8 -DCMAKE_CXX_COMPILER=g++-8
  79. make -j$(nproc)
  80. echo ""
  81. cd ~/miners
  82. cd cpuminer-multi
  83. ./build.sh
  84. echo ""
  85. cd ~
  86. tar xvfJ gpu-miners.tar.xz
  87. rm gpu-miners.tar.xz
  88. }
  89. function build_passhack {
  90. echo -e "$(tput bold)$(tput setaf 11)Rebuild password hackers with new CUDA ToolKit: $(tput setaf 7)"
  91. cd /home/wareck/
  92. git clone https://github.com/hashcat/hashcat.git
  93. cd /home/wareck/hashcat
  94. make -j$(nproc)
  95. cd /home/wareck/
  96. tar xvfJ hashcat.tar.xz
  97. rm /home/wareck/hashcat.tar.xz
  98. cd /home/wareck/
  99. echo -e ""
  100. git clone https://github.com/openwall/john.git
  101. cd /home/wareck/john
  102. sudo apt-get -y install git build-essential libssl-dev zlib1g-dev
  103. sudo apt-get -y install yasm pkg-config libgmp-dev libpcap-dev libbz2-dev clang
  104. cd /home/wareck/john/src
  105. ./configure
  106. make -s clean
  107. make -j$(nproc)
  108. echo ""
  109. }
  110. intro
  111. build_miner
  112. build_passhack