|
|
@ -115,7 +115,7 @@ Ubuntu 14.04. OpenCL + CUDA (for NVIDIA cards) |
|
|
|
```bash |
|
|
|
wget http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1404/x86_64/cuda-repo-ubuntu1404_7.5-18_amd64.deb |
|
|
|
sudo dpkg -i cuda-repo-ubuntu1404_7.5-18_amd64.deb |
|
|
|
sudo apt-get -y install software-properties-common |
|
|
|
sudo apt-get https://github.com/Genoil/cpp-ethereum/blob/master/README.md -y install software-properties-common |
|
|
|
sudo add-apt-repository -y ppa:ethereum/ethereum |
|
|
|
sudo apt-get update |
|
|
|
sudo apt-get install git cmake libcryptopp-dev libleveldb-dev libjsoncpp-dev libjson-rpc-cpp-dev libboost-all-dev libgmp-dev libreadline-dev libcurl4-gnutls-dev ocl-icd-libopencl1 opencl-headers mesa-common-dev libmicrohttpd-dev build-essential cuda -y |
|
|
@ -129,3 +129,39 @@ make -j8 |
|
|
|
|
|
|
|
You can then find the executable in the ethminer subfolder |
|
|
|
|
|
|
|
Ubuntu 15.10 or Newer. OpenCL only (for AMD cards) |
|
|
|
|
|
|
|
```bash |
|
|
|
sudo apt-get update |
|
|
|
sudo apt-get -y install software-properties-common |
|
|
|
add-apt-repository -y ppa:ethereum/ethereum |
|
|
|
sudo apt-get update |
|
|
|
sudo apt-get install git cmake libcryptopp-dev libleveldb-dev libjsoncpp-dev libjsonrpccpp-dev libboost-all-dev libgmp-dev libreadline-dev libcurl4-gnutls-dev ocl-icd-libopencl1 opencl-headers mesa-common-dev libmicrohttpd-dev build-essential -y |
|
|
|
git clone https://github.com/Genoil/cpp-ethereum/ |
|
|
|
cd cpp-ethereum/ |
|
|
|
mkdir build |
|
|
|
cd build |
|
|
|
cmake -DBUNDLE=miner .. |
|
|
|
make -j8 |
|
|
|
``` |
|
|
|
|
|
|
|
You can then find the executable in the ethminer subfolder |
|
|
|
|
|
|
|
Ubuntu 15.10 or Newer. OpenCL + CUDA (for NVIDIA cards) |
|
|
|
|
|
|
|
```bash |
|
|
|
wget http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1404/x86_64/cuda-repo-ubuntu1404_7.5-18_amd64.deb |
|
|
|
sudo dpkg -i cuda-repo-ubuntu1404_7.5-18_amd64.deb |
|
|
|
sudo apt-gethttps://github.com/Genoil/cpp-ethereum/blob/master/README.md -y install software-properties-common |
|
|
|
sudo add-apt-repository -y ppa:ethereum/ethereum |
|
|
|
sudo apt-get update |
|
|
|
sudo apt-get install git cmake libcryptopp-dev libleveldb-dev libjsoncpp-dev libjsonrpccpp-dev libboost-all-dev libgmp-dev libreadline-dev libcurl4-gnutls-dev ocl-icd-libopencl1 opencl-headers mesa-common-dev libmicrohttpd-dev build-essential cuda -y |
|
|
|
git clone https://github.com/Genoil/cpp-ethereum/ |
|
|
|
cd cpp-ethereum/ |
|
|
|
mkdir build |
|
|
|
cd build |
|
|
|
cmake -DBUNDLE=cudaminer .. |
|
|
|
make -j8 |
|
|
|
``` |
|
|
|
|
|
|
|
You can then find the executable in the ethminer subfolder |
|
|
|