dconf write /org/gnome/settings-daemon/plugins/xrandr/active true
什么也没做,而阿兰德对我来说似乎很不可理解。如果您遇到其他问题,值得尝试给xrandr。该文档位于此处:http : //www.thinkwiki.org/wiki/Xorg_RandR_1.2#First_discover_what_we_have
通过执行以下操作,我得以解决此问题:
xrandr --current
xrandr --output VGA1 --off
xrandr --output VGA1 --auto --right-of LVDS1
让我解释一下这些:
第一条命令是查看我已连接的显示器。
$ xrandr --current
Screen 0: minimum 320 x 200, current 3200 x 1080, maximum 8192 x 8192
LVDS1 connected 1280x800+0+0 (normal left inverted right x axis y axis) 261mm x 163mm
1280x800 60.0*+
1024x768 60.0
800x600 60.3 56.2
640x480 59.9
VGA1 connected 1920x1080+1280+0 (normal left inverted right x axis y axis) 509mm x 286mm
1920x1080 60.0*+
1280x1024 60.0
1440x900 59.9
1280x800 59.8
1152x864 75.0
1024x768 70.1 60.0
800x600 60.3 56.2
640x480 66.7 60.0
720x400 70.1
HDMI1 disconnected (normal left inverted right x axis y axis)
DP1 disconnected (normal left inverted right x axis y axis)
有很多无关的数据,但是我只需要两个显示器的名称。我懂了:
LVDS1 connected
和
VGA1 connected
而且我认为可以肯定的是VGA是外部显示器。所以我把它关掉
xrandr --output VGA1 --off
然后再回来
xrandr --output VGA1 --auto --right-of LVDS1
当我将光标移动到笔记本电脑屏幕的右边缘时,它会出现在外接显示器上。成功。