This repo is to host the online guide for minimizing Jetson disk usage, and to host the associated scritps and assets.
https://nvidia-ai-iot.github.io/jetson-min-disk/
This repo is host two things;
- Online user guide for "Minimizing Jetson's Disk Usage (Full)".
- Scripts and text files being referenced in the guide/article
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