解决办法安装虚拟显示器

安装xorg虚拟显示器

1
2
3
apt install xserver-xorg-video-dummy
# 提示错误依赖使用下面这个试试
apt install xserver-xorg-video-dummy --fix-missing

配置虚拟显示器

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
vim /etc/X11/xorg.conf
# 内容如下:

Section "Device"
Identifier "Configured Video Device"
Driver "dummy"
EndSection

Section "Monitor"
Identifier "Configured Monitor"
HorizSync 31.5-48.5
VertRefresh 50-70
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1920x1080"
EndSubSection
EndSection

# 内容结束

# 同样也填入以上内容到以下文件
vim /usr/share/doc/xserver-xorg-video-intel/xorg.conf

重启

1
reboot

连接远程不再提示 没有显示器或黑屏 但是正常插入显示器 不能正常显示

解决办法:移除刚才的连个配置文件
1
2
mv /usr/share/doc/xserver-xorg-video-intel/xorg.conf ~
mv /etc/X11/xorg.conf ~

恢复正常

使用虚拟显示器的时候 再把文件移动到原来位置
1
2
mv /home/cc/xorg.conf /usr/share/doc/xserver-xorg-video-intel/xorg.conf
mv /home/cc/xorg.conf /etc/X11/xorg.conf