当前位置: 首页 > article >正文

Jetson orin(Ubuntu20.04)不接显示器无法输出VNC图像解决办法以及vnc安装记录

sudo apt install vino

好像Jetpack 5.0中已经自带了。。

配置VNC server:

gsettings set org.gnome.Vino prompt-enabled false

gsettings set org.gnome.Vino require-encryption false

编辑org.gnome,增加一个“enabled key”的参数:

cd /usr/share/glib-2.0/schemas

sudo cp org.gnome.Vino.gschema.xml org.gnome.Vino.gschema.xml.old

sudo vi 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 desktip 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

手工启动vnc-server:

/usr/lib/vino/vino-server

 

 

Step 0: 在设置中打开屏幕共享,并且打开自动登录

Settings → Sharing → Screen Sharing → set ‘Active’

Step 1: 安装xserver-xorg-video-dummy

$ sudo apt update

$ sudo apt install xserver-xorg-video-dummy

Step 2: 创建虚拟显示器

$ cd /etc/X11$ sudo vim xorg.conf.dummy

Step3: xorg.conf.dummy中添加如下配置(下面1920x1080的配置)

jetsonorin系列虚拟显示配置文件资源-CSDN文库文件

Section "Device"
   Identifier "DummyDevice"
   Driver "dummy"
   VideoRam 256000
EndSection
   Section "Screen"
   Identifier "DummyScreen"
   Device "DummyDevice"
Monitor "DummyMonitor"
   DefaultDepth 24
    SubSection "Display"
        Depth 24
        Modes "1920x1080_60.0"
    EndSubSection
EndSection
Section "Monitor"
    Identifier "DummyMonitor"
    HorizSync 30-70
    VertRefresh 50-75
    ModeLine "1920x1080" 148.50 1920 2448 2492 2640 1080 1084 1089 1125 +Hsync +Vsync
EndSection

Step 4: 替换 /etc/X11/xorg.conf

$ cp xorg.conf xorg.conf.backup

$ cp xorg.conf.dummy xorg.conf

Step 5: 重启

sudo reboot

1、如果想恢复hdmi的硬件显示,需要恢复配置然后reboot

                    cp xorg.conf.backup  xorg.conf

2、如果window平台连不上提示 server did not offer supported security type

gsettings set org.gnome.Vino prompt-enabled false

gsettings set org.gnome.Vino require-encryption false


http://www.kler.cn/a/147487.html

相关文章:

  • 小白进!QMK 键盘新手入门指南
  • linux企业中常用NFS、ftp服务
  • 六、volatile
  • 网络安全之WINDOWS端口及病毒编写
  • 丑数动态规划
  • 图像深度与像素深度的辨析
  • 基于Python的南京二手房数据可视化分析的设计与实现
  • 华为认证 | HCIE必须要培训才能考试?
  • 【Linux】初识重定向(输入输出)
  • c语言新龟兔赛跑
  • Less的函数的介绍
  • wpf 使用 StringFormat
  • 微信小程序显示二维码?
  • 【SpringCloud】认识微服务、服务拆分以及远程调用
  • 【深度学习】gan网络原理生成对抗网络
  • 零基础可以学编程吗,不懂英语怎么学编程,中文编程工具实例
  • .NET6实现破解Modbus poll点表配置文件
  • 7天用Go实现Web框架Gee教程
  • win10-11全版本下载地址MSDN纯净版ISO
  • springMVC,什么是Spring MVC? Spring MVC的主要组件? springMVC工作原理/流程 MVC框架
  • Python Selenium 图片资源自动搜索保存 项目实践
  • 【Java程序员面试专栏 专业技能篇】Java SE核心面试指引(三):核心机制策略
  • 使用物联网的家庭自动化
  • 开源和闭源软件对开发的影响
  • 振弦式轴力计和振弦采集仪组成的安全监测解决方案
  • Mysql数据库多表数据查询问题