web-dev-qa-db-ja.com

Ubuntu 16.04でディスプレイの解像度を永続的に設定する方法

Ubuntu 16.04での不明な表示。 xrandrコマンドを使用して解像度を設定しますが、再起動後にリセットでディスプレイ解像度を設定します。

須藤CVT 1368 768 60

この出力の後、ここに

#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

それから

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)が欲しいです。

Dell S2216HディスプレイとIntel Inbuilt HD Graphicsを使用しています。

2
R.S.Saini

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

0
user680858