在我的设备上使用 xrandr 选择分辨率时,我不断收到一条错误消息,指出“配置 crtc 0 失败:”
(缩短)选择显示和运行后的 xrandr 输出$ xrandr
Screen 0: minimum 8 x 8, current 1920 x 1080, maximum 32767 x 32767
DP1 disconnected (normal left inverted right x axis y axis)
DP2 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 1439mm x 809mm
1920x1080 60.00*+ 50.00 59.94 30.00 24.00 29.97 23.98
4096x2160 24.00 23.98
3840x2160 30.00 25.00 24.00 29.97 23.98
1920x1080i 60.00 50.00 59.94
1680x1050 59.88
1280x720 60.00 50.00 30.00 59.94 29.97 24.00 23.98
1024x768 60.00
720x480 60.00 59.94
640x480 60.00 59.94
HDMI1 disconnected (normal left inverted right x axis y axis)
VIRTUAL1 disconnected (normal left inverted right x axis y axis)
我用来选择新分辨率的代码
$ xrandr --output DP2 --mode 3840x2160
当这给了我错误时,我还通过尝试两者来添加帧速率
$ xrandr --output DP2 --mode 3840x2160 30
和
$xrandr --output DP2 --mode 3840x2160_30
(因为我不确定添加它的正确格式)两者都给了我错误“configure crtc 0 failed:”
这是在设备本身上完成的。出于人体工程学的原因,我回到办公桌前使用 SSH 访问设备。
然后我使用了自定义分辨率(与上面相同)并尝试使用它。
我用于自定义分辨率的步骤(减去长输出)
$ cvt 3840x2160
$ xrandr --newmode "3840x2160 30.00" 338.75 3840 4080 4488 5136 2160 2163 2168 2200 -hsync +vsync
$ xrandr --addmode DP2 3840x2160_30.00
$ xrandr --output DP2 --mode 3840x2160_30.00
这似乎适用于我的设备。当我的设备重新启动时,我需要再次重复该过程(当我需要 4k 时恢复到 100p)。我陷入$ xrandr --output DP2 --mode 3840x2160_30.00
了一个.sh文件,现在如果我从我的笔记本电脑运行它(使用SSH)它会改变我的屏幕分辨率但是如果我尝试从我的设备本身运行.sh文件我得到“配置crtc 0失败:”错误