我有一台带有两个视频输出的笔记本电脑,我在家时可以使用它们(HDMI1,VGA1)。要启用它们,我这样做:
xrandr --output HDMI1 --right-of LVDS1 --auto
xrandr --output LVDS1 --off
xrandr --output VGA1 --right-of HDMI1 --auto
当我想上班时,我带上笔记本电脑,但首先运行以下命令:
xrandr --output VGA1 --off
xrandr --output LVDS1 --left-of HDMI1 --auto
xrandr --output HDMI1 --off
然后,这使我的笔记本电脑显示屏保持应有的状态。
我遇到的问题是,有时我不记得在使计算机工作之前不禁用两个屏幕。到达时,我尝试使用--output
和的各种组合,--off
但无法重新启用屏幕。
这是我运行xrandr
时未显示任何内容的输出:
Screen 0: minimum 320 x 200, current 3840 x 1080, maximum 8192 x 8192
LVDS1 connected (normal left inverted right x axis y axis)
1366x768 60.0 +
1024x768 60.0··
800x600 60.3 56.2··
640x480 59.9··
VGA1 disconnected 1920x1080+1920+0 (normal left inverted right x axis y axis) 0mm x 0mm
HDMI1 disconnected 1920x1080+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
DP1 disconnected (normal left inverted right x axis y axis)
1920x1080 (0x4c) 148.5MHz
h: width 1920 start 2008 end 2052 total 2200 skew 0 clock 67.5KHz
v: height 1080 start 1084 end 1089 total 1125 clock 60.0Hz
我尝试过的几乎每个命令都会返回:
xrandr: Configure crtc 2 failed
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 140 (RANDR)
Minor opcode of failed request: 21 (RRSetCrtcConfig)
Serial number of failed request: 40
Current serial number in output stream: 40
就像两个监视器都没有放弃其CRTC一样,由于我的硬件仅支持2,所以它将一直处于锁定状态,直到我将这些监视器插入并禁用它们为止。