cuda.sh 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. if [ -d ~/hashcat ];then rm -r -f ~/hashcat;fi
  7. if [ -d ~/miners ];then rm -r -f ~/miners;fi
  8. #wget -c https://developer.download.nvidia.com/compute/cuda/11.8.0/local_installers/cuda_11.8.0_520.61.05_linux.run
  9. 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
  10. #chmod +x cuda_11.8.0_520.61.05_linux.run
  11. chmod +x cuda_11.1.0_455.23.05_linux.run
  12. #sudo cuda_11.8.0_520.61.05_linux.run
  13. sudo ./cuda_11.1.0_455.23.05_linux.run
  14. }
  15. function build_miner {
  16. echo -e "$(tput bold)$(tput setaf 11)Rebuild miners with new CUDA ToolKit: $(tput setaf 7)"
  17. cd ~
  18. if [ ! -d miners ];then mkdir miners;else rm -r -f miners ;fi
  19. cd ~/miners
  20. echo ""
  21. git clone https://github.com/tpruvot/ccminer.git && echo ""
  22. git clone https://github.com/tpruvot/cpuminer-multi.git && echo ""
  23. git clone https://github.com/xmrig/xmrig.git && echo ""
  24. git clone https://github.com/xmrig/xmrig-nvidia.git && echo ""
  25. git clone https://github.com/uPlexa/xmrig-upx.git && echo ""
  26. git clone https://github.com/fireice-uk/xmr-stak.git && echo ""
  27. git clone https://github.com/fireice-uk/xmr-stak.git -b xmr-stak-rx xmr-stak-rx && echo ""
  28. cd ~
  29. tar xvfJ miners.tar.xz
  30. rm miners.tar.xz
  31. cd ~/miners
  32. wget -c https://download.open-mpi.org/release/hwloc/v2.8/hwloc-2.8.0.tar.bz2
  33. tar xvfj hwloc-2.8.0.tar.bz2
  34. cd hwloc-2.8.0
  35. ./configure
  36. make -j$(nproc)
  37. sudo make install
  38. sudo ldconfig
  39. cd ..
  40. rm -r hwloc-2.8.0
  41. rm hwloc-2.8.0.tar.bz2
  42. echo ""
  43. cd xmrig
  44. cd build
  45. cmake ..
  46. make -j$(nproc)
  47. cd ~/miners
  48. echo ""
  49. cd xmrig-nvidia
  50. cd build
  51. cmake .. -DCMAKE_C_COMPILER=gcc-8 -DCMAKE_CXX_COMPILER=g++-8
  52. make -j$(nproc)
  53. echo ""
  54. cd ~/miners
  55. cd xmrig-upx
  56. cd build
  57. cmake ..
  58. make -j$(nproc)
  59. echo ""
  60. cd ~/miners
  61. cd xmr-stak
  62. mkdir build
  63. cd build
  64. cmake .. -DCMAKE_C_COMPILER=gcc-8 -DCMAKE_CXX_COMPILER=g++-8
  65. make -j$(nproc)
  66. echo ""
  67. cd ~/miners
  68. cd cpuminer-multi
  69. ./build.sh
  70. echo ""
  71. cd ~
  72. tar xvfJ gpu-miners.tar.xz
  73. rm gpu-miners.tar.xz
  74. }
  75. intro