如何在 16.04 中设置自定义分辨率

如何在 16.04 中设置自定义分辨率

这基本上是同一个问题如何设置自定义分辨率?但那个版本太旧了,似乎从来没有得到过解决方案。我现在使用的是 Kubuntu 16.04。

所以我遇到了同样的问题,我尝试使用 xrandr 添加新的分辨率,这是我所做的:

cvt 1920 1080 60
Output:
# 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

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

xrandr --addmode DP-4 "1920x1080_60.00"
Output:
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:  41
  Current serial number in output stream:  42

这是“xrandr”的输出:

xrandr
Screen 0: minimum 8 x 8, current 3840 x 2160, maximum 16384 x 16384
DP-0 disconnected (normal left inverted right x axis y axis)
DP-1 disconnected (normal left inverted right x axis y axis)
DP-2 disconnected (normal left inverted right x axis y axis)
DP-3 disconnected (normal left inverted right x axis y axis)
DP-4 connected primary 3840x2160+0+0 (normal left inverted right x axis y axis) 346mm x 194mm    3840x2160     60.00*+
DP-5 disconnected (normal left inverted right x axis y axis)
DP-6 disconnected (normal left inverted right x axis y axis)
1920x1080_60.00 (0x260) 173.000MHz -HSync +VSync
    h: width  1920 start 2048 end 2248 total 2576 skew    0 clock  67.16KHz
    v: height 1080 start 1083 end 1088 total 1120           clock  59.96Hz

我使用的是联想 p50 笔记本电脑,已禁用英特尔 VGA 卡并仅使用 Nvidia 卡,并使用 Nvidia 驱动程序。

答案1

问题是(我认为)您没有足够的权限。如果您是sudoer,只需再次运行它,但要使用sudo

您需要一个“模式行”,然后告诉它要xrandr 设置模式行,请使用cvt

$ sudo cvt width height refreshrate

例子:

$ sudo cvt 1680 1050 60

注意:可能没有必要sudo运行cvt

这将为您提供:

# 1680x1050 59.95 Hz (CVT 1.76MA)  hsync: 65.29 kHz; pclk: 146.25 MHz
Modeline "1680x1050_60.00"  146.25           1680 1784 1960 2240  1050 1053 1059.    1089 -hsync +vsync

将其提供给xrandr(示例):

$ sudo xrandr --newmode "1680x1050_60.00"  146.25  1680 1784  1960 2240  1050 1053 1059 1089 - hsync +vsync

然后将其添加到可能的解决方案中:

$ sudo xrandr --addmode VGA-0 1680x1050_60.00

我希望这回答了你的问题。

相关内容