Category

Crypto Mining

Install nvidia-docker on proxmox

By | Crypto Mining, Linux | No Comments

Install nvidia-docker on proxmox with this easy guide.

Remove the blacklist from /etc/modprobe.d/pve-blacklist.conf by commenting out "nvidiafb"

Add "non-free" to /etc/apt/sources.list
deb http://ftp.us.debian.org/debian buster main contrib non-free

apt-get update
apt-get install nvidia-driver nvidia-smi

Reboot!

apt-get update ; apt-get install docker.io docker-compose
curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | \
apt-key add -
distribution=$(. /etc/os-release;echo $ID$VERSION_ID)
curl -s -L https://nvidia.github.io/nvidia-docker/$distribution/nvidia-docker.list | \
tee /etc/apt/sources.list.d/nvidia-docker.list
apt-get update ; apt-get install nvidia-docker2

Install zogminer Zcash Miner on Ubuntu 16.04

By | Crypto Mining | No Comments

[raw]
apt-get install libdb++-dev
apt-get install libboost1.58-all-dev libboost-all-dev
apt-get install build-essential pkg-config libc6-dev m4 g++-multilib autoconf libtool ncurses-dev unzip git python zlib1g-dev wget bsdmainutils automake opencl-headers Mesa-common-dev
git clone https://github.com/nginnever/zogminer.git
cd zogminer/
./zcutil/fetch-params.sh
./zcutil/build.sh -j$(nproc)
[/raw]

Run GPU test miner

[raw]

./src/zcash-miner -G

[/raw]

Crypto Picks December 2017

By | Crypto Mining | No Comments

These are my top crypto picks for December 2017.

XVG – Verge
MONA – Monacoin
GRS – Groestlcoin
DGB – Digibyte
XMR – Monero
XLM – Stellar
NEO – Neo
LBC – Lbry Credits
ERC20 – EtherDelta
ALTCOM – Altcommunity coin
BAT – Basic Attention Token
QRL – Quantam Resistance Ledger
OMG – OmiseGo
DASH – Dash

Learn more about how to mine these coins at https://cryptoandcoffee.com

Quickstart Guide Install MPOS on Ubuntu 16.04 – Mining Portal Open Source

By | Crypto Mining | 6 Comments

Quickstart Guide Install MPOS on Ubuntu 16.04 – Mining Portal Open Source
Simply set your MYSQL password and let the installer do the rest. When done, update you config file with new MYSQL password.

[raw]
#!/bin/bash
cd ~
sudo apt-get update
sudo apt-get dist-upgrade -y
sudo apt-get install -y git
sudo apt-get install -y build-essential libboost-all-dev libcurl4-openssl-dev libdb5.3-dev libdb5.3++-dev mysql-server python-twisted python-mysqldb python-dev python-setuptools python-memcache python-simplejson python-pip make autoconf libtool g++ build-essential pkg-config unzip libboost-all-dev apache2 memcached php7.0-mysqlnd php7.0-curl php7.0-json php7.0-curl libapache2-mod-php7.0 build-essential make automake gcc php-memcached
wget http://download.oracle.com/berkeley-db/db-4.8.30.zip
unzip db-4.8.30.zip
cd db-4.8.30
cd build_unix/
../dist/configure –prefix=/usr/local –enable-cxx
make
make install
cd ..
echo “Berkeley libs installed”
cd ~
pip install –upgrade pip
easy_install -U distribute
pip install autobahn
git clone https://github.com/Tydus/litecoin_scrypt.git
git clone https://github.com/ahmedbodi/stratum-mining.git
git clone https://github.com/ahmedbodi/stratum.git
cd stratum-mining
git submodule init
git submodule update
cd externals/litecoin_scrypt
python setup.py install
cd ~
cd /root/stratum-mining/externals/stratum
echo “Now update and remove setup tools and fixes RuntimeError: maximum recursion depth exceeded /root/stratum-mining/externals/stratum/distribute-0.6.28-py2.7.egg”
cat < setup.py
#!/usr/bin/env python
#from distribute_setup import use_setuptools
#use_setuptools()
#python setup.py sdist upload
from setuptools import setup
from stratum import version
setup(name=’stratum’,
version=version.VERSION,
packages=[‘stratum’,],
py_modules=[‘distribute_setup’,],
zip_safe=False,
install_requires=[‘twisted’, ‘ecdsa’, ‘pyopenssl’, ‘autobahn’,]
)
EOF
python setup.py install
cd ~
cp stratum-mining/conf/config_sample.py stratum-mining/conf/config.py
cd /var/www/html
git clone https://github.com/MPOS/php-mpos.git MPOS
cd MPOS
git checkout master
echo “Enter your MYSQL password you just set”
mysql -u root -p -e “create database mpos”
echo “Again”
mysql -u root -p mpos < sql/000_base_structure.sql
sudo chown -R www-data templates/compile templates/cache
sudo cp include/config/global.inc.dist.php include/config/global.inc.php
cat < /etc/apache2/sites-available/000-default.conf

#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined

Options Indexes FollowSymLinks
AllowOverride None
Require all granted

EOF
apache2ctl -k stop; sleep 2; sudo apache2ctl -k start
echo “Not using a mysql password, now finish setup here: /var/www/html/MPOS/include/config/global.inc.php”
echo “Then check your server”
[/raw]

Now go ahead and install your coins and connect your RPC daemons.

https://github.com/MPOS/php-mpos

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 Litceoin Wallet Ubuntu 16.04 Command Line

By | Crypto Mining | 5 Comments

[raw]
#!/bin/bash
mkdir Github && cd Github
sudo apt-get install -y git
git clone https://github.com/litecoin-project/litecoin.git
cd litecoin
sudo apt-get install -y build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev
sudo apt-get install -y bsdmainutils libboost-system-dev libboost-filesystem-dev libboost-chrono-dev
sudo apt-get install -y libboost-program-options-dev libboost-test-dev libboost-thread-dev
sudo apt-get install -y libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev
sudo apt-get install -y libqrencode-dev protobuf-compiler miniupnpc
sudo add-apt-repository ppa:bitcoin/bitcoin -y
sudo apt-get update -y
sudo apt-get install -y libdb4.8-dev libdb4.8++-dev
./autogen.sh
./configure
make
make install
[/raw]

Thanks be to https://litecointalk.io/t/litecoin-compilation-guide/3039

https://github.com/litecoin-project/litecoin

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