如何在 Ubuntu 16.04 中永久设置显示分辨率

如何在 Ubuntu 16.04 中永久设置显示分辨率

Ubuntu 16.04 中的未知显示。使用 xrandr 命令设置分辨率,但重启后显示分辨率重置。

须藤 cvt 1368 768 60

在此输出之后将在此处

#1368x768 59.88 Hz(CVT)水平同步:47.79 kHz; pclk:85.25 MHz 模式行“1368x768_60.00”85.25 1368 1440 1576 1784 768 771 781 798 -hsync +vsync

然后

sudo xrandr --newmode "1368x768_60.00" 85.25 1368 1440 1576 1784 768 771 781 798 -hsync +vsync

sudo xrandr --addmode VGA-1 1368x768_60.00

显示器会改变时间,但重新启动/重新登录后,显示器将更改为默认的 1024x768(4:3),并显示类似错误

无法应用显示器的存储配置

但我想要 1368x768(16:9)。

我正在使用戴尔 S2216H 显示器和英特尔内置高清显卡。

答案1

您可以重新配置 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

不久前我遇到了这个问题。

答案2

输出xrandr可能如下所示(我缩短了列表):

willem@TP420XU1604:~$ xrandr 
Screen 0: minimum 320 x 200, current 1600 x 900, maximum 8192 x 8192
LVDS-1 connected 1600x900+0+0 (normal left inverted right x axis y axis) 309mm x 174mm
   1600x900      60.01*+  40.00  
   1440x900      59.89  
   1360x768      59.80    59.96  
   .
   .
   400x300       60.32    56.34  
   320x240       60.05  
VGA-1 disconnected (normal left inverted right x axis y axis)
HDMI-1 disconnected (normal left inverted right x axis y axis)
DP-1 disconnected (normal left inverted right x axis y axis)
HDMI-2 disconnected (normal left inverted right x axis y axis)
HDMI-3 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)
willem@TP420XU1604:~$ 

正如我在评论中所说,如果您没有任何输出,我认为您的图形驱动程序存在问题。用于lshw -c video从系统获取信息。请使用以下帖子进行故障排除:https://askubuntu.com/questions/23238/how-can-i-find-what-video-driver-is-in-use-on-my-system

相关内容