Ubuntu 20.04.0LTSの最大画面解像度が低すぎる

Aug 16 2020

最近、フラッシュドライブにUbuntuをインストールし、21:9画面と16:9の2つのモニターをセットアップしました。21:9画面は問題なくセットアップされていますが、設定メニューでは、1920x1080モニターであるにもかかわらず、16:9モニターに選択できる最大解像度は1600x900です。ターミナルで、私は走りました:

$ xrandr -q
Screen 0: minimum 8 x 8, current 2560 x 1980, maximum 16384 x 16384
DVI-I-0 disconnected (normal left inverted right x axis y axis)
DVI-I-1 disconnected (normal left inverted right x axis y axis)
HDMI-0 connected primary 2560x1080+0+900 (normal left inverted right x axis y axis) 798mm x 334mm
   2560x1080     60.00*+
   1920x1080     60.00    59.94    50.00    29.97    60.05    60.00    50.04  
   1680x1050     59.95  
   1600x900      60.00  
   1280x1024     75.02    60.02  
   1280x720      60.00    59.94    50.00  
   1152x864      75.00  
   1024x768      75.03    60.00  
   800x600       75.00    60.32  
   720x576       50.00  
   720x480       59.94  
   640x480       75.00    59.94    59.93  
DP-0 disconnected (normal left inverted right x axis y axis)
DP-1 disconnected (normal left inverted right x axis y axis)
DVI-D-0 connected 1600x900+418+0 (normal left inverted right x axis y axis) 0mm x 0mm
   1024x768      60.00 +
   1600x900      59.82* 
   1400x900      59.88  
   1368x768      59.88    59.85  
   1360x768      59.96    59.80  
   1280x800      59.91    59.81  
   1280x720      59.86    59.74  
   1152x864      60.00  
   1024x576      59.90    59.82  
   960x540       59.82    59.63  
   864x486       59.92    59.57  
   800x600       72.19    60.32    56.25  
   800x450       59.82  
   700x450       59.88  
   684x384       59.88    59.85  
   680x384       59.96    59.80  
   640x480       59.94  
   640x400       59.98    59.88  
   640x360       59.86    59.83  
   512x384       60.00  
   512x288       60.00    59.92  
   480x270       59.82    59.63  
   432x243       59.92    59.57  
   400x300       72.19  
   320x240       60.05  

そして、1920x1080を選択することができないようです。これには理由がありますか?参考までに、GTX 970GPUを使用しています。ありがとうございました。

回答

kanehekili Aug 16 2020 at 02:22

NVidiaサーバー設定を使用して、GTX760で画面を管理できました。アプリケーションが作成したXorgconfが/etc/X11/xorg.conf.d/my.confにコピーされました。

もちろん、これは、アプリケーションがモニターを正しく検出した場合にのみ意味があります。それ以外の場合は、不足しているEDID情報を追加する必要があります。これは、解決策が機能するかどうかを試す方法です。

xrandr --output DVI-D-0 --mode 1920x1080 --rate 60

それが機能せず、Nvidiaサーバー設定がモニターサイズを認識しない場合は、上記の「my.conf」ファイルに追加する必要があるかもしれません:(解像度を変更してください-これは単なる例です!

Section "Monitor"
    Identifier      "External DVI"
    Modeline        "1280x1024_60.00"  108.88  1280 1360 1496 1712  1024 1025 1028 1060  -HSync +Vsync
    Option          "PreferredMode" "1280x1024_60.00"
EndSection

リブート。問題が発生した場合は、そのconfファイルを削除して再起動するだけで、害はありません。