Ubuntu 15.04和超宽显示器。 如何设置最大分辨率?

我正在尝试使用华硕mx299Q显示器在Intel nuc5i5ryh上设置Ubuntu 15.04。 它与miniDisplayPort连接到DVIcable。 它应该支持2560×1080 21:9超宽分辨率。

Ubuntu没有显示21:9的任何选项,我得到的最多是1680×1050(16:10)

有没有办法通过命令行“trickery”来提高分辨率? 或者一些有用的工具或包装?

谢谢。

(编辑,来自xrandr的信息,cvt并尝试调整:)

torost@torost-desktop:~$ xrandr Screen 0: minimum 8 x 8, current 1680 x 1050, maximum 32767 x 32767 DP1 disconnected (normal left inverted right x axis y axis) HDMI1 disconnected (normal left inverted right x axis y axis) HDMI2 connected primary 1680x1050+0+0 (normal left inverted right x axis y axis) 673mm x 284mm 1680x1050 59.9* 1280x1024 75.0 60.0 1440x900 59.9 1280x960 60.0 1280x800 59.9 1152x864 75.0 1280x720 60.0 1024x768 75.1 70.1 60.0 832x624 74.6 800x600 72.2 75.0 60.3 56.2 640x480 75.0 66.7 60.0 720x400 70.1 VIRTUAL1 disconnected (normal left inverted right x axis y axis) 

运行cvt:

 $ cvt 2560 1080 60 # 2560x1080 59.98 Hz (CVT) hsync: 67.17 kHz; pclk: 230.00 MHz Modeline "2560x1080_60.00" 230.00 2560 2720 2992 3424 1080 1083 1093 1120 -hsync +vsync $ xrandr --newmode "2560x1080_60.00" 230.00 2560 2720 2992 3424 1080 1083 1093 1120 -hsync +vsync $ xrandr --output HDMI2 --mode 2560x1080_60.00 

编辑:在玩xrandr之后我设法提高了分辨率。 屏幕抱怨“电缆不正确。请使用双链路DVI电缆”不确定我实际得到的分辨率,但这是一个很大的改进。

我的初始minihdmi-hdmi电缆不起作用,所以使用这个适配器从minidisplayport到dvi-dvi。

正在努力使这个设置永久化。 :d

编辑2:我得到了它的工作,发布解决方案使其永久在下面,任何其他人偶然发现这个问题。 在下面的解决方案之后,重新启动并从monitorsettings中选择新的分辨率。

不得不创建一个etc / X11 / xorg.conf,奇怪的是那里没有文件。 它看起来像这样:

 Section "Monitor" Identifier "HDMI2" Modeline "2560x1080" 230.00 2560 2720 2992 3424 1080 1083 1093 1120 -hsync +vsync Option "PreferredMode" "2560x1080" EndSection Section "Screen" Identifier "Screen0" Monitor "HDMI2" DefaultDepth 24 SubSection "Display" Modes "2560x1080" EndSubSection EndSection Section "Device" Identifier "Device0" Driver "intel" EndSection