Detailed explanation of Ubuntu16.04 tutorial for installing Docker nvidia docker

  • 2021-07-03 01:05:17
  • OfStack

Directory Docker Installation Nvidia-docker Installation

Docker Installation

1. Replace the domestic software source, recommend the source of University of Science and Technology of China, and stabilize quickly (optional)


sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
sudo sed -i 's/archive.ubuntu.com/mirrors.ustc.edu.cn/g' /etc/apt/sources.list
sudo apt update

2. Install required packages


sudo apt install apt-transport-https ca-certificates software-properties-common curl

3. Add GPG key and Docker-ce software source. Here, take Docker-ce source of University of Science and Technology of China as an example


curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu \
$(lsb_release -cs) stable"

4. Update package cache after successful addition

sudo apt update

5. Install Docker-ce

sudo apt install docker-ce

6. Set the startup self-startup and start Docker-ce (set and started by default after successful installation, which can be ignored)


sudo systemctl enable docker
sudo systemctl start docker

7. Test run

sudo docker run hello-world

8. Add the current user to the docker user group to run docker without sudo (optional)


sudo groupadd docker
sudo usermod -aG docker $USER

9. Test adding user groups (optional)

docker run hello-world

Nvidia-docker Installation

1. Unload nvidia-docker 1.0 and other GPU containers


docker volume ls -q -f driver=nvidia-docker | xargs -r -I{} -n1 docker ps -q -a -f volume={} | xargs -r docker rm -f
sudo apt-get purge -y nvidia-docker

2. Add package repositories


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

3. Install nvidia-docker2


sudo apt-get install -y nvidia-docker2
sudo pkill -SIGHUP dockerd

Step 4 Test the installation


docker run --runtime=nvidia --rm nvidia/cuda:9.0-base nvidia-smi
References

https://docs.docker.com/install/

https://github.com/NVIDIA/nvidia-docker

Summarize


Related articles: