Created
April 10, 2025 16:20
-
-
Save PROPHESSOR/6ede99f986aa18be82d9ea0f78eea47c to your computer and use it in GitHub Desktop.
My Jetson Nano setup cheatsheet (
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 | |
Author
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
How to add folder to fish path (when no
fish_add_pathcommand available):