Jetson nano configure Remote Desktop

This article describes how to implement Windows Remote Desktop connection Jetson nano.

I. Introduction environment

Jetson nano official mirror (JetPack 4.2), download source software has been updated, the updated system.

Jestson nano official mirror Download.

  • Update software source command:sudo apt update
  • Update the system command:sudo apt upgrade

II. On the Desktop Sharing Settings

1. Open Desktop-sharing provided

  • Open the Settings

Click the Settings button in the upper right corner of the desktop, enter the settings page.

 

  • Open Remote Desktop settings

Further Click Desktop-Sharing settings to access to a remote desktop settings.

Open the icon:

At this point it is likely to fail to open! !

2. Fix Desktop-sharing

If the open fails, refer to the following to repair. Open Desktop-sharing if successful, skip to the next section directly.

  • Installation Vino:

sudo apt install vino

  • Edit org.gnome.Vino:

sudo vi /usr/share/glib-2.0/schemas/org.gnome.Vino.gschema.xml

  • Add the following at the end:
   <key name="enabled" type="b">
      <summary>Enable remote access to the desktop</summary>
      <description>
        If true, allows remote access to the desktop via the RFB
        protocol. Users on remote machines may then connect to the
        desktop using a VNC viewer.
      </description>
      <default>false</default>
    </key>
  • compile the schemas for Gnome:
sudo glib-compile-schemas /usr/share/glib-2.0/schemas
  • Start Vino-server
/usr/lib/vino/vino-server 

 

III. Installation Configuration dconf-editor

  • dconf-editor installation command:

sudo apt-get install dconf-editor

  • dconf-editor configuration

Note that the current user must use to run, you can not add sudo.

Open dconf-editor command:dconf-editor

Select: org> gnome> desktop> remote-access

Removing the prompt-enabled and require-encryption hook.

Icon:

 

Five. VNC Viewer

请è¾å¥å¾çæè¿°

  • If it is turned into the system under ssh remote control
/usr/lib/vino/vino-server --display=:0

Six .Windows Remote Desktop Connection

Terminal xrdp installation command:

sudo apt-get install xrdp vnc4server xbase-clients

Open the Windows Remote Desktop, enter the IP address of the Jetson's, for remote connections.

 

Seven control tx2 with vnc remote, because the display can not detect after the restart, the default resolution is very low, does not work properly, modify the resolution in a terminal:

xrandr --fb 1280x720

分辨率越高延迟越高 不建议设置太高。

 

参考: https://www.ncnynl.com/archives/201905/3098.html

 

发布了4 篇原创文章 · 获赞 8 · 访问量 9144

Guess you like

Origin blog.csdn.net/u012254599/article/details/99291834