1

我无法在 virtualbox 中使用 xrandr 设置屏幕分辨率。这是一个运行 ubuntu 12.04 的 VM,驱动程序支持此分辨率,因为来自同一 iso 的 VM 在同一台机器上运行它。为什么会出现 X Error of failed request: BadMatch (invalid parameter attributes)?

步骤 0

xrandr
Screen 0: minimum 64 x 64, current 1024 x 768, maximum 32000 x 32000
VBOX0 connected 1024x768+0+0 0mm x 0mm
   1024x768       60.0*+
   800x600        60.0  
   640x480        60.0 

步骤1

cvt 1920 1080
1920x1080 59.96 Hz (CVT 2.07M9) hsync: 67.16 kHz; pclk: 173.00 MHz
Modeline "1920x1080_60.00"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync

第2步

xrandr --newmode "1920x1080_60.00"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync

第 3 步

~$ xrandr --addmode VBOX0  1920x1080_60.00
   X Error of failed request:  BadMatch (invalid parameter attributes)
   Major opcode of failed request:  150 (RANDR)
   Minor opcode of failed request:  18 (RRAddOutputMode)
   Serial number of failed request:  20
   Current serial number in output stream:  21
4

2 回答 2

0

如果您之前已完成此过程,那么当您尝试使用相同的名称时会发生一些事情。将模式命名为其​​他名称,然后重试。

于 2013-11-03T01:09:01.120 回答
0

我认为问题是分号

现在试试

xrandr --addmode VBOX0  "1920x1080_60.00"
于 2021-07-30T20:57:48.533 回答