Nvidia nx配置VNC

1. 桌面共享打开闪退,编辑/usr/share/glib-2.0/schemas/org.gnome.Vino.gschema.xml 文件末尾添加以下内容

<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>

输入以下指令编译一下刚才编辑过的文件

sudo glib-compile-schemas /usr/share/glib-2.0/schemas

完成以上步骤,正常来说就可以打开桌面共享的图标了。

2. 打开桌面共享设置密码。

3. vnc server 设置

3.1 设置开机启动

sudo ln -s ../vino-server.service \
/usr/lib/systemd/user/graphical-session.target.wants

3.2 配置VNC

gsettings set org.gnome.Vino prompt-enabled false
gsettings set org.gnome.Vino require-encryption false

3.3 设置密码

gsettings set org.gnome.Vino authentication-methods "['vnc']"
gsettings set org.gnome.Vino vnc-password $(echo -n '请输入你的密码'|base64)

3.4 设置分辨率 (不插显示器, 远程桌面检测不到显示器就不会有分辨率参数,会显示黑屏,所以强制一个分辨率)

/etc/X11/xorg.conf在文件最下面中添加

Section "Screen"
  Identifier  "Default Screen"
  Monitor    "Configured Monitor"
  Device    "Tegra0"
  SubSection "Display"
    Depth  24
    Virtual 1280 800 # Modify the resolution by editing these values
  EndSubSection
EndSection

3.5 重启生效

 sudo reboot

4. 设置自动登录

设置 – >详细信息 – >用户

5. 关闭自动锁屏

系统设置->亮度和锁屏

参考:Jetson nano配置VNC实现过程图解 (yii666.com)

Tags:, , ,