Skip to content

Commit f1029ae

Browse files
committed
dlrm version & docker fix
1 parent c527664 commit f1029ae

File tree

1 file changed

+13
-8
lines changed
  • content/learning-paths/servers-and-cloud-computing/dlrm

1 file changed

+13
-8
lines changed

content/learning-paths/servers-and-cloud-computing/dlrm/1-overview.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Before you can run the benchmark, you will need an Arm-based Cloud Service Provi
2727
Make sure Python is installed by running the following and making sure a version is printed.
2828

2929
```bash
30-
python --version
30+
python3 --version
3131
```
3232

3333
```output
@@ -44,26 +44,31 @@ sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyring
4444
sudo chmod a+r /etc/apt/keyrings/docker.asc
4545
```
4646

47-
Next, install some additional dependencies dependencies:
47+
Run the following command to add the official Docker repository to your system’s APT sources list:
4848

4949
```bash
50-
sudo apt-get update
51-
sudo apt-get install ca-certificates curl docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin make -y
50+
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
51+
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
5252
```
5353

54-
Finally, the following commands will finalize the Docker installation:
54+
After adding the repository, refresh the package index to ensure the latest versions are available:
5555

5656
```bash
57-
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
58-
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
57+
sudo apt-get update
5958
```
59+
Now, install the necessary dependencies, including Docker and related components:
60+
```bash
61+
sudo apt-get install ca-certificates curl docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin make -y
62+
```
63+
64+
This ensures that Docker and its dependencies are correctly set up on your system.
6065

6166
{{% notice Note %}}
6267
If you run into permission issues with Docker, try running the following:
6368

6469
```bash
6570
sudo usermod -aG docker $USER
66-
sudo chmod 666 /var/run/docker.sock
71+
newgrp docker
6772
```
6873
{{% /notice %}}
6974

0 commit comments

Comments
 (0)