Start Here : Installation and Setup
Quick start guide on how-to use nvidia-docker with Linux to mine cryptocurrency
Install NVIDIA drivers
sudo add-apt-repository -y ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt-get -y install $(ubuntu-drivers list | sort | uniq | tail -n1)The command ubuntu-drivers will return the latest drivers once you have updated the repository
Install Docker
We must first install Docker to the target system
sudo apt-get -y remove docker docker-engine docker.io containerd runc
sudo apt-get -y install \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository -y \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
sudo apt-get update
sudo apt-get install -y docker-ce docker-ce-cli containerd.ioInstall Docker-Compose
Used to help orchestrate multiple docker containers in the future
You have now installed Docker on your system! Now we can install nvidia-docker
Install nvidia-docker
Once you're strong enough, save the world:
All in One Installer
Last updated
Was this helpful?