/jetson-min-disk

Primary LanguageShellOtherNOASSERTION

jetson-min-disk

Document generation status: example workflow

This repo is to host the online guide for minimizing Jetson disk usage, and to host the associated scritps and assets.

Full Documentation (internally hosted for now)

https://nvidia-ai-iot.github.io/jetson-min-disk/

About this repo

This repo is host two things;

  1. Online user guide for "Minimizing Jetson's Disk Usage (Full)".
  2. Scripts and text files being referenced in the guide/article

How to use this repo

Mkdocs: Initial setup

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.

Mkdocs: To locally build the HTML site

docker run --rm -it -v ${PWD}:/docs squidfunk/mkdocs-material build