Skip to content

Instantly share code, notes, and snippets.

@PROPHESSOR
Created April 10, 2025 16:20
Show Gist options
  • Select an option

  • Save PROPHESSOR/6ede99f986aa18be82d9ea0f78eea47c to your computer and use it in GitHub Desktop.

Select an option

Save PROPHESSOR/6ede99f986aa18be82d9ea0f78eea47c to your computer and use it in GitHub Desktop.
My Jetson Nano setup cheatsheet (
# Disable/enable GUI
sudo systemctl set-default multi-user.target # Disable GUI
sudo systemctl set-default graphical.target # Enable GUI
# Enable SSH
sudo systemctl start ssh
# Install useful stuff
sudo apt update
sudo apt install python3 python3-pip tree mc neofetch ncdu fish htop elinks
sudo pip3 install -U jetson-stats
# Setup VNC
cd /usr/lib/systemd/user/graphical-session.target.wants
sudo ln -s ../vino-server.service ./.
gsettings set org.gnome.Vino prompt-enabled false
gsettings set org.gnome.Vino require-encryption false
gsettings set org.gnome.Vino authentication-methods "['vnc']"
gsettings set org.gnome.Vino vnc-password $(echo -n 'nano'|base64
@PROPHESSOR
Copy link
Author

How to flash the image without unzipping
unzip -p jetson-nano-jp461-sd-card-image.zip sd-blob-b01.img | sudo dd of=/dev/mmcblk0 bs=1M status=progress

@PROPHESSOR
Copy link
Author

@PROPHESSOR
Copy link
Author

How to add folder to fish path (when no fish_add_path command available):

set -U fish_user_paths /path/to/file $fish_user_paths

@PROPHESSOR
Copy link
Author

How to allow to use docker without sudo:
sudo usermod -aG docker $USER

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment