RE: Ethereum AMD GPU Mining Tutorial Ubuntu 16.04 LTS by dardann

View this thread on: d.buzz | hive.blog | peakd.com | ecency.com

Viewing a response to: @dardann/re-jeramyroberts-ethereum-amd-gpu-mining-tutorial-ubuntu-16-04-lts-20180105t132539779z

·@jeramyroberts·
0.000 HBD
Configure auto-mine on startup

    Install Screen
        sudo apt install screen
    Create a launcher script
        cd ~
        sudo nano minestart.sh

    In nano, you will need to paste the following (replace USERNAME with your Ubuntu username)

    #!/bin/bash

    DEFAULT_DELAY=0

    if [ "x$1" = "x" -o "x$1" = "xnone" ]; then

    DELAY=$DEFAULT_DELAY

    else

    DELAY=$1

    fi

    sleep $DELAY

    cd /usr/local/claymore95

    su USERNAME -c "screen -dmS ethm ./mine.sh"

    You will now need to exit out of Nano
        Press CTRL+X
        Type Y
        Press Enter until you return to the bash promp

    Add executable permissions to the file by typing the following:
        sudo chmod +x minestart.sh

    Add minestart.sh to startup
        Type the following:
            sudo nano /etc/rc.localv
        Find the line which reads exit 0 and type the following above that line (replace USERNAME with your Ubuntu username):
            /home/USERNAME/minestart.sh 15 &

============sudo nano /etc/rc.local
        Find the line which reads exit 0 and type the following above that line (replace USERNAME with your Ubuntu username):
            /home/miner-MS-7974/minestart.sh 15 &
👍