Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update documentation #85

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion docs/dev-env-setup_jetson.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The second option requires more work, but saves the need to reflash the Jetson.

Before setting up the SSD, make sure you have all necessary software installed.

> **Note**: If you used an NVIDIA-supplied SD card image to flash your SD card, all necessary JetPack components are already pre-installed, so this section can be skipped.
> **Note**: If you used an NVIDIA-supplied SD card image to flash your SD card, all necessary JetPack components are already pre-installed, so this section can be skipped. Although, verifying the correct setup won't hurt!

1. Install the full NVIDIA JetPack SDK, which includes the `nvidia-container` package.

Expand Down Expand Up @@ -210,6 +210,14 @@ Now that the SSD is installed and available to your device, you can use the extr
sudo journalctl -u docker
```

6. Restart the Docker service and add your user to the `docker` group.

```bash
sudo systemctl restart docker
sudo usermod -aG docker $USER
newgrp docker
```

### Test Docker on SSD

1. \[Terminal 1\] First, open a terminal to monitor the disk usage while pulling a Docker image.
Expand Down