Ubuntu20.04 VNC 安装与设置实现
VNC是一个远程桌面协议。按照本文的说明进行操作可以实现用VNC对Ubuntu20.04进行远程控制。一般的VNC安装方式在主机没有插显示器的时候是无法使用的。下面的操作可以在主机有显示器和没有显示器时都能够正常工作。
首先安装x11vnc
sudoapt-getinstallx11vnc-y
设置vnc密码
sudox11vnc-storepasswd/etc/x11vnc.pass
创建x11vnc自启动服务
创建/etc/systemd/system/x11vnc.service,并写入以下内容
[Unit] Description=Startx11vncatstartup. After=multi-user.target [Service] Type=simple ExecStart=/usr/bin/x11vnc-auth/run/user/1000/gdm/Xauthority-forever-loop-noxdamage-repeat-rfbauth/etc/x11vnc.pass-rfbport5900-shared [Install] WantedBy=multi-user.target
启动x11vnc服务
sudosystemctlenablex11vnc sudoservicex11vncstart
此时如果远程的主机上接了显示器,那么就可以在局域网通过VNC进行访问了。
为了能够保证远程主机无论是否有显示器,我们都能通过VNC进行远程访问,我们还要做下面的修改
创建默认的xorg.conf文件
sudoXorg:1-configure
此时程序会生成/root/xorg.conf.new文件
我的默认文件内容如下
Section"ServerLayout" Identifier"X.orgConfigured" Screen0"Screen0"00 InputDevice"Mouse0""CorePointer" InputDevice"Keyboard0""CoreKeyboard" EndSection Section"Files" ModulePath"/usr/lib/xorg/modules" FontPath"/usr/share/fonts/X11/misc" FontPath"/usr/share/fonts/X11/cyrillic" FontPath"/usr/share/fonts/X11/100dpi/:unscaled" FontPath"/usr/share/fonts/X11/75dpi/:unscaled" FontPath"/usr/share/fonts/X11/Type1" FontPath"/usr/share/fonts/X11/100dpi" FontPath"/usr/share/fonts/X11/75dpi" FontPath"built-ins" EndSection Section"Module" Load"glx" EndSection Section"InputDevice" Identifier"Keyboard0" Driver"kbd" EndSection Section"InputDevice" Identifier"Mouse0" Driver"mouse" Option"Protocol""auto" Option"Device""/dev/input/mice" Option"ZAxisMapping""4567" EndSection Section"Monitor" Identifier"Monitor0" VendorName"MonitorVendor" ModelName"MonitorModel" EndSection Section"Device" ###AvailableDriveroptionsare:- ###Values::integer,:float, :"True"/"False", ### :"String", :" Hz/kHz/MHz", ### :" %" ###[arg]:argoptional #Option"Accel"#[ ] #Option"AccelMethod"# #Option"Backlight"# #Option"CustomEDID"# #Option"DRI"# #Option"Present"#[ ] #Option"ColorKey"# #Option"VideoKey"# #Option"Tiling"#[ ] #Option"LinearFramebuffer"#[ ] #Option"HWRotation"#[ ] #Option"VSync"#[ ] #Option"PageFlip"#[ ] #Option"SwapbuffersWait"#[ ] #Option"TripleBuffer"#[ ] #Option"XvPreferOverlay"#[ ] #Option"HotPlug"#[ ] #Option"ReprobeOutputs"#[ ] #Option"XvMC"#[ ] #Option"ZaphodHeads"# #Option"VirtualHeads"# #Option"TearFree"#[ ] #Option"PerCrtcPixmaps"#[ ] #Option"FallbackDebug"#[ ] #Option"DebugFlushBatches"#[ ] #Option"DebugFlushCaches"#[ ] #Option"DebugWait"#[ ] #Option"BufferCache"#[ ] Identifier"Card0" Driver"intel" BusID"PCI:0:2:0" EndSection Section"Screen" Identifier"Screen0" Device"Card0" Monitor"Monitor0" SubSection"Display" Viewport00 Depth1 EndSubSection SubSection"Display" Viewport00 Depth4 EndSubSection SubSection"Display" Viewport00 Depth8 EndSubSection SubSection"Display" Viewport00 Depth15 EndSubSection SubSection"Display" Viewport00 Depth16 EndSubSection SubSection"Display" Viewport00 Depth24 EndSubSection EndSection
将此文件复制至/usr/share/X11/xorg.conf.d/xorg.conf
这个文件保证在主机上插有显示器的时候,系统界面能在显示器上正常显示。下面我们再给系统添加一个虚拟显示器,当主机没有显示器的时候系统就使用这个虚拟显示器。
安装虚拟显卡驱动
sudoaptinstallxserver-xorg-video-dummy
在这个文件的最后添加下面的内容
Section"Monitor" Identifier"Monitor1" HorizSync1.0-2000.0 VertRefresh1.0-200.0 #Add16:9modes,othersareautomaticallydetected. Modeline"1280x720"74.481280133614721664720721724746 Modeline"1920x1080"172.8019202040224825761080108110841118 EndSection Section"Device" Identifier"Card1" Driver"dummy" VideoRam256000 EndSection Section"Screen" DefaultDepth24 Identifier"Screen1" Device"Card1" Monitor"Monitor1" SubSection"Display" Depth24 Modes"1920x1080" EndSubSection EndSection
这样我们就创建了一个使用虚拟显卡的虚拟显示器。为了让虚拟的显示器和真实显示器都能工作,我们需要把最上面的ServerLayout进行更改
Section"ServerLayout" Identifier"X.orgConfigured" Screen0"Screen0"00 Screen1"Screen1"00 EndSection
现在重新启动远程电脑,就可以在没有显示器的情况下远程了。
以上的方法还有一个问题。就是在用户没有登录的其情况下是没办法远程的。所以需要把用户设置成自动登录。
到此这篇关于Ubuntu20.04VNC安装与设置实现的文章就介绍到这了,更多相关Ubuntu20.04VNC安装与设置内容请搜索毛票票以前的文章或继续浏览下面的相关文章希望大家以后多多支持毛票票!
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。