sudo xrandr --addmode LVDS1 1976x1080_60.00 X 失败请求的错误:BadMatch(无效的参数属性)

sudo xrandr --addmode LVDS1 1976x1080_60.00 X 失败请求的错误:BadMatch(无效的参数属性)

当我尝试改变分辨率时,出现以下情况:

$ sudo xrandr --addmode LVDS1 1976x1080_60.00
X Error of failed request:  BadMatch (invalid parameter attributes)
  Major opcode of failed request:  140 (RANDR)
  Minor opcode of failed request:  18 (RRAddOutputMode)
  Serial number of failed request:  32
  Current serial number in output stream:  33

请帮我。

答案1

我不知道您是如何进行的,但我发现应该使用以下步骤:

  1. 使用 xrandr 确保新模式能够适应最大帧缓冲区大小:

    xrandr | grep maximum
    
  2. 使用 gtf 创建模式线:

    gtf 1440 900 59.9
    
    • 输出如下:

      # 1440x900 @ 59.90 Hz (GTF) hsync: 55.83 kHz; pclk: 106.29 MHz
      Modeline "1440x900_59.90"  106.29  1440 1520 1672 1904  900 901 904 932  -HSync +Vsync
      
  3. step 2使用 xrandr添加新模式

    xrandr --newmode "1440x900_59.90"  106.29  1440 1520 1672 1904  900 901 904 932  -HSync +Vsync
    
  4. 将此新添加的模式添加到所需的输出(VGA / LVDS等):

    xrandr --addmode VGA 1440x900_59.90
    
  5. 选择新模式:

    xrandr --output VGA --mode 1440x900_59.90
    

笔记:

根据您的查询将这些1440x900_59.90数字更改为。1976x1080_60.00

来源:

https://ubuntuforums.org/showthread.php?t=1112186

https://wiki.ubuntu.com/X/Config/Resolution#Adding%20undetected%20resolutions

相关内容