ArmbianのX Window System の画面解像度を修正する | 工作者(kousakusya)のブログ

RockPro64やBanana PiでInstallしているArmbianの

X Window Systemの解像度の設定がうまくいっていない場合、

モバイルディスプレイでうまく表示されないことがあるので、

修正方法を模索してみた。


(1)  /etc/X11/xorg.conf.d/に、01-armbian-defaults.conf をつくる

 

# Xorg 1: -configure

(2)  /etc/X11/xorg.conf.d/01-armbian-defaults.conf に以下のの設定を追加する

Section "Screen"
    Identifier    "<default monitor>"
    SubSection "Display"
        Depth 24
        Modes "1024x768""800x600""640x480"
    EndSubSection
EndSection

 

ひとまずこれで、モバイルディスプレイに表示させることができた。