這基本上是同一個問題如何設定自訂解析度?但那個已經很舊了,似乎從未得到解決方案。我現在使用的是 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
我希望這回答了你的問題。