Do you guys know why in this link
https://www.dropbox.com/s/hs2ej9qul7stgn4/KTccminer-8.17.tar.gzThe ccminer actually inside is the 8.19 version
When I tried to start I get
ccminer 8.19-KlausT (64bit) for nVidia GPUs
Compiled with GCC 5.4 using Nvidia CUDA Toolkit 8.0
Based on pooler cpuminer 2.3.2 and the tpruvot@github fork
CUDA support by Christian Buchner, Christian H. and DJM34
Includes optimizations implemented by sp-hash, klaust, tpruvot and tsiv.
Illegal action
And them the rig gets reboot because the miner it's not working
Where I can get the 8.17???
Fixed the link:
ccminer 8.17-KlausT (64bit) for nVidia GPUs
Compiled with GCC 5.4 using Nvidia CUDA Toolkit 8.0
Based on pooler cpuminer 2.3.2 and the tpruvot@github fork
CUDA support by Christian Buchner, Christian H. and DJM34
Includes optimizations implemented by sp-hash, klaust, tpruvot and tsiv.
Thank you so much
Perhaps I should be doing something wrong.
Look I did
wget https://www.dropbox.com/s/hs2ej9qul7stgn4/KTccminer-8.17.tar.gz
tar -xvf KTccminer-8.17.tar.gz
After I change the 0miner file and change the line of the miner to
/home/m1/Downloads/KTccminer/ccminer
After rebooting I just get this screen like on the 8.19 version
ccminer 8.17-KlausT (64bit) for nVidia GPUs
Compiled with GCC 5.4 using Nvidia CUDA Toolkit 8.0
Based on pooler cpuminer 2.3.2 and the tpruvot@github fork
CUDA support by Christian Buchner, Christian H. and DJM34
Includes optimizations implemented by sp-hash, klaust, tpruvot and tsiv.
And the miner never starts
Do you know what's wrong?
Im so sorry to be asking too much about this
Did you copied the content of KTccminer-8.17 to /home/m1/KTccminer?
Check your settings with:
~/nvOC report
Stop miner, watchdog,... with:
pkill -e screen
Try this:
wget -O- https://www.dropbox.com/s/hs2ej9qul7stgn4/KTccminer-8.17.tar.gz | tar -xzC /home/m1/KTccminer --strip 1
No need to reboot.
Restart 3main with:
pkill -f 3main
Or manually run miner with:
/home/m1/KTccminer/ccminer -a ALGO -o stratum+tcp://SERVER:PORT -u ADDRESS.WORKER -p x
If you got segmentation fault, try to re-compile the miner:
cd /home/m1/KTccminer
./autogen.sh
./configure
./build.sh
If you get bignum... error during the compile do this:
cd /home/m1/Downloads
wget http://www.openssl.org/source/openssl-1.0.1e.tar.gz
tar -xvzf openssl-1.0.1e.tar.gz
cp /usr/local/include/openssl/bn.h /home/m1/Downloads/openssl-1.0.1e/bn.h.backup
sudo cp /home/m1/Downloads/openssl-1.0.1e/crypto/bn/bn.h /usr/local/include/openssl/bn.h
After compile finished revert back the bn.h with:
sudo cp /home/m1/Downloads/openssl-1.0.1e/bn.h.backup /usr/local/include/openssl/bn.h