This repo is to host the online guide for minimizing Jetson disk usage, and to host the associated scripts and assets.
https://nvidia-ai-iot.github.io/jetson-min-disk/
This repo is host two things;
- Online documentation "Guide to Minimizing Jetson Disk Usage".
- Scripts and text files being referenced in the guide, and supported files and directories.
See "Minimized L4T" configuration for JetPack 5.x page.
https://squidfunk.github.io/mkdocs-material/getting-started/
sudo apt install -y docker.io
sudo docker pull squidfunk/mkdocs-material
Mkdocs: Start development server on http://localhost:8000
docker run --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material
If you get "docker: Got permission denied while trying to connect to the Docker daemon socket at ..." error, issue
sudo chmod 666 /var/run/docker.sock
to get around with the issue.
docker run --rm -it -v ${PWD}:/docs squidfunk/mkdocs-material build