前言
有一台机器【ubuntu20】,用于远程开发,使用向日葵时候,如果不接显示器是会卡住的。。。
显示屏是有限的,所以现在解决一下这个问题。
卡在登录界面
双击启动
由于Ubuntu默认显示管理器是gdm,而向日葵使用的是lightdm,这里安装lightdm并切换即可
sudo apt install lightdm #安装
#如果错过下图配置界面可使用
sudo dpkg-reconfigure lightdm
#进行重新配置
在切换之后,重启计算机即可使用向日葵进行远程控制
无显示器远控
安装一下虚拟显示屏:
安装虚拟显示器方案
sudo apt install xserver-xorg-core-hwe-18.04 #sudo apt install xserver-xorg-video-dummy sudo apt install xserver-xorg-video-dummy-hwe-18.04
当出现 无法修正错误,因为您要求某些软件包保持现状,就是它们破坏了软件包间的依赖关系。 使用aptitude安装
sudo aptitude install xserver-xorg-core-hwe-18.04 #sudo aptitude install xserver-xorg-video-dummy sudo aptitude install xserver-xorg-video-dummy-hwe-18.04
而后添加配置文件,地址是 /usr/share/X11/xorg.conf.d/xorg.conf 内容是
Section "Monitor" Identifier "Monitor0" HorizSync 28.0-80.0 VertRefresh 48.0-75.0 Modeline "1920x1080_60.00" 172.80 1920 2040 2248 2576 1080 1081 1084 1118 -HSync +Vsync
EndSection
Section "Device" Identifier "Card0" Driver "dummy" VideoRam 256000
EndSection
Section "Screen" DefaultDepth 24 Identifier "Screen0" Device "Card0" Monitor "Monitor0" SubSection "Display" Depth 24 Modes "1920x1080_60.00" EndSubSection
EndSection
保存后重启 无显示器远控一切正常。同时计算机将默认使用虚拟显示器。如果需要再次直连显示器,需要删除或重命名/usr/share/X11/xorg.conf.d/xorg.conf