为什么 cvt 会改变我的 res 值?

为什么 cvt 会改变我的 res 值?

我的分辨率有问题,我想借助 xrandr 来调整它,但是当我尝试设置它时,它会改变值。

fabio@fabio-EasyNote-TS11HR ~ $ cvt 1366 768
# 1368x768 59.88 Hz (CVT) hsync: 47.79 kHz; pclk: 85.25 MHz
Modeline "1368x768_60.00"   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync

因此它将我的 1366 更改为 1368 并且当我尝试 xrandr 时:

fabio@fabio-EasyNote-TS11HR ~ $ xrandr --newmode "1368x768_60.00"   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync
xrandr: Failed to get size of gamma for output default
X Error of failed request:  BadName (named color or font does not exist)
Major opcode of failed request:  149 (RANDR)
Minor opcode of failed request:  16 (RRCreateMode)
Serial number of failed request:  19
Current serial number in output stream:  19

我能做些什么?

答案1

同样的问题...我用的是戴尔 xps14z

我得到了它部分使用 1360x768 并使更改永久生效,我将以下几行添加到 .profile 隐藏文件中,如下所示:

gksu gedit ~/.profile

然后在文件末尾添加:

xrandr --newmode "1360x768_60.00"   84.75  1360 1432 1568 1776  768 771 781 798 -hsync +vsync
xrandr --addmode LVDS1 1360x768_60.00

重新启动后,登录屏幕仍显示 640x480,但成功登录后,显示 1360x768

顺便提一下:我在尝试启用 Unity 3D 后遇到了这个问题,我使用的是熊蜂

相关内容