2021/10/31 17:43 - 00351-1 - カテゴリ: Fossapup64
解像度が4Kにならない
Fossapupをデフォルトで起動すると、4Kディスプレイに繋いでいても、2Kになってしまった。メニューのセットアップのXorgビデオウィザードのスクリーン解像度をみても4Kの選択肢は出てこない。
私の採った対策
- cvt にパラメータを教えてもらう
root# cvt 3840 2160 # 3840x2160 59.98 Hz (CVT 8.29M9) hsync: 134.18 kHz; pclk: 712.75 MHz Modeline "3840x2160_60.00" 712.75 3840 4160 4576 5312 2160 2163 2168 2237 -hsync +vsync root#
- xrandr にグラボのポート名を教えてもらう。(今回の場合、2行めのDisplayPort-0がそれ)
root# xrandr Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 16384 x 16384 DisplayPort-0 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 698mm x 393mm 1920x1080 60.00* 59.94 1680x1050 59.95 1280x1024 75.02 60.02 1440x900 59.89 1280x960 60.00 1280x720 60.00 59.94 1024x768 75.03 70.07 60.00 832x624 74.55 800x600 72.19 75.00 60.32 640x480 75.00 72.81 66.67 HDMI-A-0 disconnected (normal left inverted right x axis y axis) DVI-D-0 disconnected (normal left inverted right x axis y axis) root#
- xrandrを実行して、4K表示できるかテストする
これで一応4kになるはず(これだけだと再起動すると元にもどる)
root# xrandr --newmode "3840x2160_60.00" 712.75 3840 4160 4576 5312 2160 2163 2168 2237 -hsync +vsync root# xrandr --addmode DisplayPort-0 3840x2160_60.00 root# xrandr --output DisplayPort-0 --mode 3840x2160_60.00
- 設定ファイルを作成する(ATIのドライバは間に合わなかったのでコメントアウト)
/etc/X11/xorg.conf.d/10-monitor.confSection "Monitor" Identifier "DisplayPort-0" Modeline "3840x2160_60.00" 712.75 3840 4160 4576 5312 2160 2163 2168 2237 -hsync +vsync Option "PreferredMode" "3840x2160_60.00" EndSection Section "Screen" Identifier "Screen0" Monitor "DisplayPort-0" DefaultDepth 24 SubSection "Display" Modes "3840x2160_60.00" EndSubSection EndSection Section "Device" Identifier "Device0" # Driver "intel" EndSection
- 再起動する
グラボ:Radeon RX 550
モニタ:PHL 328P6VU
コメントを読む