xrandr“找不到模式”,尽管模式已添加并显示在 xrandr 上

xrandr“找不到模式”,尽管模式已添加并显示在 xrandr 上

我正在尝试将我的平板电脑用作笔记本电脑的扩展显示器,按照 Prometheus 的回答这里

我应该用 VGA-0 输出模式,但是 xrandr“找不到模式”。

$ gtf 1280 1024 60
    # 1280x1024 @ 60.00 Hz (GTF) hsync: 63.60 kHz; pclk: 108.88 MHz
  Modeline "1280x1024_60.00"  108.88  1280 1360 1496 1712  1024 1025 1028 1060  -HSync +Vsync
$ xrandr newmode "1280x1024_60.00"  108.88  1280 1360 1496 1712  1024 1025 1028 1060  -HSync +Vsync
$ xrandr --addmode VGA-0 1280x1024_60.00

此时,提示$ xrandr返回

Screen 0: minimum 8 x 8, current 1366 x 768, maximum 16384 x 16384
VGA-0 disconnected (normal left inverted right x axis y axis)
LVDS-0 connected primary 1366x768+0+0 (normal left inverted right x axis y axis) 344mm x 194mm
   1366x768       60.0*+
HDMI-0 disconnected (normal left inverted right x axis y axis)
  1280x1024_60.00 (0x2a6)  108.9MHz
        h: width  1280 start 1360 end 1496 total 1712 skew    0 clock   63.6KHz
        v: height 1024 start 1025 end 1028 total 1060           clock   60.0Hz

因此有一种模式称为1280x1024_60.00。但是现在,尝试输出该模式时,我得到了

$ xrandr --output VGA-0 --mode 1280x1024_60.00
xrandr: cannot find mode 1280x1024_60.00

我不明白,因为它看起来mode 1280x1024_60.00已成功添加。

欢迎提出任何建议或意见。提前致谢。

答案1

在 上newmode,1280x1024_60.00 用双引号括起来,而 onaddmodeoutput则不用。这两个命令也使用双引号。至少,这是正确的语法。另一个问题是,您试图将模式添加到断开连接的端口“ VGA-0 disconnected (normal left inverted right x axis y axis)”,这是行不通的。必须先连接端口。

从帖子的内容来看,你可能使用了错误的端口。你的 VGA-0 端口用于通过 15 针 VGA 连接器连接实际显示器。

相关内容