Skip to content

ethcoreminer 1.0.0

Latest
Compare
Choose a tag to compare
@EtherCoreAdmin EtherCoreAdmin released this 26 Feb 08:26

EthCoreMiner is a GPU desktop miner for EtherCore ProgPoW mining.

For Windows

Please install the latest CUDA driver from NVIDIA homepage if you are using nvidia cards for mining but you haven't installed any CUDA drivers or if the miner doesn't detect your card.

Download the miner, unzip the file and create start.bat beside of ethcoreminer.exe

example)

:start
TIMEOUT 10
ethcoreminer.exe -P stratum1+tcp://0xbf0d596191fed3c4ed421a42ee4b9bf21bc1139d.rig1@pool.ethercore.org:8008
goto start

For Ubuntu

Please install the [latest CUDA driver if you are using nvidia cards for mining but you haven't installed any CUDA drivers or if the miner doesn't detect your card.

$ release="ubuntu"$(lsb_release -sr | sed -e "s/\.//g")
$ echo $release
$ sudo apt-get install sudo gnupg
$ sudo apt-key adv --fetch-keys "http://developer.download.nvidia.com/compute/cuda/repos/"$release"/x86_64/7fa2af80.pub"
$ sudo sh -c 'echo "deb http://developer.download.nvidia.com/compute/cuda/repos/'$release'/x86_64 /" > /etc/apt/sources.list.d/nvidia-cuda.list'
$ sudo sh -c 'echo "deb http://developer.download.nvidia.com/compute/machine-learning/repos/'$release'/x86_64 /" > /etc/apt/sources.list.d/nvidia-machine-learning.list'
$ sudo apt-get update
$ sudo apt-get install cuda-10-0 libcudnn7-dev

Check if the CUDA driver is installed

$ cat /usr/local/cuda/version.txt
CUDA Version 10.0.130

Download the miner, decompress the file and create start.sh beside of ethcoreminer

while [ 1 ]; do
./ethcoreminer.exe -P stratum1+tcp://0xbf0d596191fed3c4ed421a42ee4b9bf21bc1139d.rig1@pool.ethercore.org:8008
sleep 10
done