Ubuntu 并将分辨率更改为 4K

Ubuntu 并将分辨率更改为 4K

我确实搜索并做了一个脚本:

$cat./xrandr 复制代码
无级变速器 3840 2160 59.91
xrandr --newmode "4K" 711.75 3840 4160 4576 5312 2160 2163 2168 2237 -hsync +vsync
xrandr --addmode XWAYLAND1 4K
xrandr——输出XWAYLAND1——模式4K`

但是现在,即使在设置-->设备-->屏幕分辨率中,我也没有在列表中选择 3840x2160 模式。

当我运行脚本时:

$ bash -x ./xrandr 
+ cvt 3840 2160 59.91
# 3840x2160 59.90 Hz (CVT) hsync: 133.99 kHz; pclk: 711.75 MHz
Modeline "3840x2160_59.91"  711.75  3840 4160 4576 5312  2160 2163 2168 2237 -hsync +vsync
+ xrandr --newmode 4K 711.75 3840 4160 4576 5312 2160 2163 2168 2237 -hsync +vsync
X Error of failed request:  BadName (named color or font does not exist)
  Major opcode of failed request:  140 (RANDR)
  Minor opcode of failed request:  16 (RRCreateMode)
  Serial number of failed request:  18
  Current serial number in output stream:  18
+ xrandr --addmode XWAYLAND1 4K
+ xrandr --output XWAYLAND1 --mode 4K
xrandr: Configure crtc 0 failed

有什么解决办法吗?我有 Ubuntu 17.10。我之前有这个解决方案...它就消失了。

答案1

所有问题都是由于显示器设置中的“显示端口 1.2”引起的。改回“显示端口 1.1”即可解决问题。分辨率在 gnome 显示设置列表中。

这一点确实很难诊断。

答案2

您可以重新配置 xOrg。我通过在我的/usr/share/X11/xorg.conf.d目录中创建一个文件来完成此操作。

我使用 vim 制作的:

sudo vim /usr/share/X11/xorg.conf.d/5-monitor.conf

这是我的文件的一个示例

Section "Monitor"
   Identifier "Monitor0"
   Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
   Modeline "3840x2160_30.0" 297.00 3840 4016 4104 4400 2160 2168 2178 2250 +hsync +vsync
   Modeline "4096x2160_24.0" 297.00 4096 5116 5204 5500 2160 2168 2178 2250 +hsync +vsync
EndSection
Section "Device"
   Identifier "Device0"
   Driver "intel"
EndSection
Section "Screen"
   Identifier "Screen0"
   Device "Device0"
   Monitor "Monitor0"
   DefaultDepth 24
   SubSection "Display"
      Depth 24
      Modes "3840x2160" "1920x1080"
   EndSubSection
EndSection

您可以按照本教程获取有关如何执行此操作的说明: https://wiki.gentoo.org/wiki/Xorg/Multiple_monitors

相关内容