Category

ccminer

Install ccminer sp-hash fork Ubuntu 16.04

By | ccminer, Crypto Mining, NVIDIA | No Comments

This guide will teach you how to install ccminer sp-hash on Ubuntu 16.04

You must first run Install NVIDIA Driver and CUDA on Ubuntu 16.04 before proceeding.

[raw] #!/bin/bash
export LD_LIBRARY_PATH=/usr/local/cuda-8.0/lib
export PATH=$PATH:/usr/local/cuda-8.0/bin
echo ‘export PATH=/usr/local/cuda-8.0/bin:$PATH’ >> ~/.bashrc
mkdir sphash
cd sphash
git clone https://github.com/sp-hash/ccminer.git
cd ccminer/
./autogen.sh
./configure CFLAGS=”-O3 -Wall -march=native”
make
[/raw]

To buy a pre-compiled Dockerfile with this image check my selection of miner friendly Dockerfiles at https://docker.cryptoandcoffee.com

https://github.com/sp-hash/

Install ccminer tpruvot fork Ubuntu 16.04

By | ccminer, Crypto Mining, NVIDIA | 5 Comments

This guide will teach you how to install ccminer tpruvot on Ubuntu 16.04

You must first run Install NVIDIA Driver and CUDA on Ubuntu 16.04 before proceeding.

[raw] #!/bin/bash
mkdir tpruvot
cd tpruvot
git clone https://github.com/tpruvot/ccminer.git
cd ccminer/
export LD_LIBRARY_PATH=/usr/local/cuda-8.0/lib
export PATH=$PATH:/usr/local/cuda-8.0/bin
echo ‘export PATH=/usr/local/cuda-8.0/bin:$PATH’ >> ~/.bashrc
./autogen.sh
./configure
make
echo “Finished”
[/raw]

To buy a pre-compiled Docker container with this image compatible with NVIDIA GPU’s check my selection of miner friendly Docker containers at https://cryptoandcoffee.com

https://github.com/tpruvot

Install ccminer alexis78 fork Ubuntu 16.04

By | ccminer, Crypto Mining, NVIDIA | No Comments

This guide will teach you how to install ccminer alexis78 on Ubuntu 16.04

You must first run Install NVIDIA Driver and CUDA on Ubuntu 16.04 before proceeding.

[raw] mkdir alexis78
cd alexis78
git clone https://github.com/alexis78/ccminer.git
cd ccminer/
export LD_LIBRARY_PATH=/usr/local/cuda-8.0/lib
export PATH=$PATH:/usr/local/cuda-8.0/bin
./autogen.sh
./configure
make
echo “Finished”
exit
[/raw]

To buy a pre-compiled Dockerfile with this image check my selection of miner friendly Dockerfiles at https://docker.cryptoandcoffee.com

https://github.com/alexis78

Install ccminer klaust fork Ubuntu 16.04

By | ccminer, Crypto Mining, NVIDIA | No Comments

The fastest algorithm to mine on NVIDIA is by far Skein.  This fork of ccminer from Klaust is definitely the fastest build of ccminer I have found to mine Skein on NVIDIA CUDA.

You must first run Install NVIDIA Driver and CUDA on Ubuntu 16.04 before proceeding.

[raw] #!/bin/bash
mkdir klaust
cd klaust
wget https://github.com/KlausT/ccminer/archive/8.09.zip
apt-get install -y unzip
unzip 8.09.zip
cd ccminer-8.09
apt-get install -y python3-dev
echo ‘add_compile_options(-std=c++11)’ >> ./CMakeLists.txt
./autogen.sh
./configure
make
echo “Finished”
exit
[/raw]

To buy a pre-compiled Dockerfile with this image check my selection of miner friendly Dockerfiles at https://docker.cryptoandcoffee.com

https://github.com/KlausT/ccminer