VNC (Virtual Network Computing) enables you to control your Jetson developer kit from another computer on the same network, by viewing and interacting with the desktop of the developer kit from the other computer. To learn more about VNC, click here.
mkdir -p ~/.config/autostart
cp /usr/share/applications/vino-server.desktop ~/.config/autostart/.
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
# Replace thepassword with your desired password
gsettings set org.gnome.Vino authentication-methods "['vnc']"
gsettings set org.gnome.Vino vnc-password $(echo -n 'thepassword'|base64)
sudo reboot
Step 1: Download and Install VNC viewer from here
Step 2: Launch the VNC viewer and type in the IP address of your developer kit
Step 3: If you have configured the VNC server for authentication, provide the VNC password
The example below is using gvncviewer, however any of your favourite vnc clients should work as well. One popular alternative is remmina.
Step 1: Install gvncviewer by executing following commands:
sudo apt update
sudo apt install gvncviewer
Step 2: Launch gvncviewer
gvncviewer
Step 3: If you have configured the VNC server for authentication, provide the VNC password