Advertisement
MrYukonC

Ethereum - How to setup a headless Ubuntu AMD miner

Jul 16th, 2016
5,307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 9.34 KB | None | 0 0
  1. # MrYukonC -- https://www.youtube.com/channel/UClfAgeZvfwC9hcJrFisW8cQ
  2.  
  3. # These notes go with the following YouTube video: https://www.youtube.com/watch?v=fmrsTozOvT0
  4.  
  5. # Ubuntu 15.04 64-bit mini.iso is located at:
  6. # http://archive.ubuntu.com/ubuntu/dists/vivid/main/installer-amd64/current/images/netboot/mini.iso
  7.  
  8.  
  9. ------------------------------------------
  10. Update/upgrade package lists
  11. ------------------------------------------
  12.  
  13.     sudo apt-get update
  14.     sudo apt-get upgrade
  15.  
  16.  
  17. ------------------------------------------
  18. Install AMD drivers + misc configuration
  19. ------------------------------------------
  20.  
  21.     # may have to try this twice
  22.     sudo apt-get install fglrx fglrx-core fglrx-dev fglrx-amdcccle git screen
  23.  
  24.     # confirm that all GPUs are detected
  25.     sudo aticonfig --lsa
  26.  
  27.     # only delete /etc/X11/xorg.conf when reconfiguring
  28.     sudo rm /etc/X11/xorg.conf && sudo aticonfig --adapter=all --initial -f
  29.  
  30.     # otherwise, when first setting up just run the aticonfig command as such
  31.     sudo aticonfig --adapter=all --initial -f
  32.  
  33.     sudo nano /etc/default/grub
  34.     # change the GRUB_CMDLINE_LINUX_DEFAULT line to read as: GRUB_CMDLINE_LINUX_DEFAULT="text"
  35.  
  36.     sudo update-grub
  37.  
  38.     nano .bashrc
  39.     # add the following at end of the script: export DISPLAY=:0
  40.  
  41.     Ctrl + O # save
  42.     Ctrl + X # exit nano
  43.  
  44.     sudo nano /etc/profile
  45.     # add the following at end of the script: export XAUTHORITY=~/.Xauthority
  46.  
  47.     Ctrl + O # save
  48.     Ctrl + X # exit nano
  49.  
  50.     sudo reboot
  51.  
  52.  
  53.  
  54. ------------------------------------------
  55. Install minimal x server & display manager
  56. ------------------------------------------
  57.  
  58.     # install xorg
  59.     sudo apt-get install xorg
  60.  
  61.     # reconfigure and choose "Anybody"
  62.     sudo dpkg-reconfigure x11-common
  63.  
  64.  
  65.  
  66. ------------------------------------------
  67. Install and configure Dwarfpool's stratum-like eth-proxy
  68. ------------------------------------------
  69.  
  70.     # See here for limited install directions: https://bitcointalk.org/index.php?topic=1200891
  71.     # See here for more info: http://dwarfpool.com/eth midway down one the left-hand side under a section called "Stratum Proxy v0.0.5"
  72.  
  73.     sudo apt-get install python-twisted
  74.  
  75.     git clone https://github.com/Atrides/eth-proxy
  76.     cd eth-proxy
  77.  
  78.     # Be sure to edit eth-proxy.conf and setup YOUR ETH address
  79.     # Here is how I have mine setup for ethpool.org
  80.  
  81.     nano eth-proxy.conf
  82.  
  83.     #==============================================
  84.     # Begin ~/eth-proxy/eth-proxy.conf example
  85.     #==============================================
  86.  
  87.     # Select Ethereum ETH or Expanse EXP
  88.     COIN = "ETH"
  89.  
  90.     # Host and port for your workers
  91.     HOST = "xxx.xxx.xxx.xxx" # this needs to be the IP address of the machine that is running eth-proxy
  92.     PORT = 8080
  93.  
  94.     # Coin address where money goes
  95.     WALLET = "0x0000000000000000000" # this needs to be YOUR ETH address and the quotes stay
  96.  
  97.     # To donate please use wallet "0xea7263feb7d8a8ab0a11eedd8f1ce04412ab0820"
  98.  
  99.     # It's useful for individually monitoring and statistic
  100.     ENABLE_WORKER_ID = True
  101.  
  102.     # On DwarfPool you have option to monitor your workers via email.
  103.     # If WORKER_ID is enabled, you can monitor every worker/rig separately.
  104.     MONITORING = True
  105.     MONITORING_EMAIL = "[email protected]" # your notification email address
  106.  
  107.     # Main pool
  108.     POOL_HOST = "us1.ethpool.org" # use whatever your pool's address is here
  109.     POOL_PORT = 3333
  110.  
  111.     # Failover pool
  112.     POOL_FAILOVER_ENABLE = True
  113.  
  114.     POOL_HOST_FAILOVER1 = "us2.ethpool.org" # use whatever your pool's 2nd address is here
  115.     POOL_PORT_FAILOVER1 = 3333
  116.  
  117.     POOL_HOST_FAILOVER2 = "eu1.ethpool.org" # use whatever your pool's 3rd address is here
  118.     POOL_PORT_FAILOVER2 = 3333
  119.  
  120.     POOL_HOST_FAILOVER2 = "asia1.ethpool.org" # use whatever your pool's 4th address is here, etc...
  121.     POOL_PORT_FAILOVER3 = 3333
  122.  
  123.     # Logging
  124.     LOG_TO_FILE = True
  125.  
  126.     #==============================================
  127.     # End ~/eth-proxy/eth-proxy.conf example
  128.     #==============================================
  129.  
  130.     Ctrl + O # save
  131.     Ctrl + X # exit nano
  132.  
  133.  
  134.  
  135. ------------------------------------------
  136. Setup a script to start eth-proxy
  137. ------------------------------------------
  138.  
  139.     cd # change to your home directory
  140.  
  141.     nano start_ethproxy.sh
  142.  
  143.     #==============================================
  144.     # Begin ~/start_ethproxy.sh
  145.     #==============================================
  146.  
  147.     #!/bin/bash
  148.  
  149.     cd ~/eth-proxy && python eth-proxy.py
  150.  
  151.     #==============================================
  152.     # End ~/start_ethproxy.sh
  153.     #==============================================
  154.  
  155.     Ctrl + O # save
  156.     Ctrl + X # exit nano
  157.  
  158.     chmod +x start_ethproxy.sh # make the script executable
  159.  
  160.  
  161.  
  162. ------------------------------------------
  163. Build Genoil's Ethminer
  164. ------------------------------------------
  165.  
  166.     sudo apt-get -y install software-properties-common
  167.     sudo wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add -
  168.     sudo add-apt-repository "deb http://llvm.org/apt/trusty llvm-toolchain-trusty main"
  169.     sudo add-apt-repository -y ppa:ethereum/ethereum
  170.     sudo add-apt-repository -y ppa:ethereum/ethereum-dev
  171.     sudo apt-get -y update
  172.     sudo apt-get -y upgrade
  173.  
  174.     sudo apt-get -y install build-essential cmake libedit-dev libboost-all-dev automake unzip zlib1g-dev libgmp-dev libtool libleveldb-dev yasm libminiupnpc-dev libreadline-dev scons libncurses5-dev libcurl4-openssl-dev wget libjsoncpp-dev libargtable2-dev libcryptopp-dev libjson-rpc-cpp-dev libmicrohttpd-dev clang-3.5 lldb-3.5 llvm-4.0-dev libv8-dev mesa-common-dev opencl-headers
  175.  
  176.     # I run Genoil's version of ethminer -- specifically version 1.0.8
  177.     # The following will show you how to grab the code for it from the source
  178.     # repository and build it:
  179.  
  180.     mkdir Genoil
  181.     cd Genoil
  182.     mkdir 1.0.8
  183.     cd 1.0.8
  184.     git clone --recursive -b 108 --single-branch https://github.com/genoil/cpp-ethereum
  185.     cd cpp-ethereum
  186.     mkdir build
  187.     cd build
  188.     cmake .. -DBUNDLE=miner -DGUI=0 -DCMAKE_BUILD_TYPE=Release
  189.     make
  190.     # Wait for the build to complete
  191.  
  192.     # strip unneeded symbols from the binary -- this reduces its size by a little
  193.     strip ethminer/ethminer
  194.  
  195.     # confirm that ethminer sees the correct # of GPUs
  196.     ethminer/ethminer --list-devices
  197.  
  198.     cd # change to your home directory
  199.  
  200.  
  201.  
  202. ------------------------------------------
  203. Setup Basic X-Window Environment (required for fglrx and aticonfig to work)
  204. ------------------------------------------
  205.  
  206.     # setup ~/.xinitrc to set GPU fan and clock speeds and to open a permanent xterm window
  207.     #
  208.     # ~/.xinitrc is a script that gets executed when 'startx' gets called.
  209.     # It gives the user a chance to do things when X starts up.
  210.     # You can read more about it here: https://wiki.archlinux.org/index.php/xinitrc
  211.     #
  212.     # The following is an example ~/.xinitrc file for a 3-GPU rig -- if you have more or
  213.     # fewer GPUs, then add or remove lines as necessary to account for each GPU
  214.  
  215.     nano .xinitrc
  216.  
  217.     #==============================================
  218.     # Begin ~/.xinitrc
  219.     #==============================================
  220.  
  221.     #!/bin/bash
  222.  
  223.     amdconfig --od-enable
  224.  
  225.     DISPLAY=:0.0 && aticonfig --pplib-cmd "set fanspeed 0 60" # set fan 0 on card 0 @ 60%
  226.     DISPLAY=:0.1 && aticonfig --pplib-cmd "set fanspeed 0 60" # set fan 0 on card 1 @ 60%
  227.     DISPLAY=:0.2 && aticonfig --pplib-cmd "set fanspeed 0 60" # set fan 0 on card 2 @ 60%
  228.  
  229.     DISPLAY=:0.0 && aticonfig --adapter=0 --odsc=1150,1500 # set core clock @ 1150 and memory clock 1500 on card 0
  230.     DISPLAY=:0.1 && aticonfig --adapter=1 --odsc=1150,1500 # set core clock @ 1150 and memory clock 1500 on card 1
  231.     DISPLAY=:0.2 && aticonfig --adapter=2 --odsc=1150,1500 # set core clock @ 1150 and memory clock 1500 on card 2
  232.  
  233.     DISPLAY=:0 && xterm -geometry +1+1 -n login
  234.  
  235.     #==============================================
  236.     # End ~/.xinitrc
  237.     #==============================================
  238.  
  239.  
  240.  
  241. ------------------------------------------
  242. Setup a script to start the X Window Environment followed by ethminer with appropriate command line flags/options
  243. ------------------------------------------
  244.  
  245.     nano start_ethminer.sh
  246.  
  247.     #==============================================
  248.     # Begin ~/start_ethminer.sh
  249.     #==============================================
  250.  
  251.     #!/bin/bash
  252.  
  253.     xinit &
  254.  
  255.     sleep 5
  256.  
  257.     export GPU_MAX_ALLOC_PERCENT=100
  258.     export GPU_SINGLE_ALLOC_PERCENT=100
  259.     export GPU_USE_SYNC_OBJECTS=1
  260.  
  261.     ~/Genoil/1.0.8/cpp-ethereum/build/ethminer/ethminer -G -F http://<IP ADDRESS OF MACHINE RUNNING ETH-PROXY>/<NAME OF MINING RIG> --farm-recheck 100 --cl-local-work 64 --cl-global-work 8192 -E old -v 1
  262.  
  263.     #==============================================
  264.     # End ~/start_ethminer.sh
  265.     #==============================================
  266.  
  267.     chmod +x start_ethminer.sh # make the script executable
  268.  
  269.  
  270. ------------------------------------------
  271. How to start mining
  272. ------------------------------------------
  273.  
  274.     cd # make sure you are in your home directory
  275.  
  276.     # Remember that eth-proxy always needs to be running since it is what will communicate
  277.     # with the pool in terms of receiving and submitting work for ethminer.
  278.  
  279.     # Start eth-proxy (if it is not already running) in its own
  280.     # screen session with the start_ethproxy.sh script that created earlier:
  281.     screen -S ethproxy
  282.     ./start_ethproxy.sh
  283.  
  284.     Ctrl + A + D # Detatch from the eth-proxy screen session
  285.  
  286.     # Start ethminer in its own screen session with the start_ethminer.sh script that created earlier
  287.     screen -S ethminer
  288.     ./start_ethminer.sh
  289.  
  290.     Ctrl + A + D # Optional - detatch from the ethminer screen session -- I usually leave it up so I can monitor output
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement