Ubuntu 18.04.1 LTSを使用しています(2日前に16から更新)。解像度は良好でしたが、誤って1024x768(4:3)に変更され、1920x1080(またはその他のサイズ)に変更しようとするたびに受け入れられず、1024x768(4:3)に戻りました。助けてください、ありがとう。
数回試行し、PCを再起動しましたが、変更は適用されませんでした。助けてください:)
編集:既存の解像度で端末から画面を追加しました: Terminal
"nomodeset"がgrubに追加されているかどうかを確認してください。 (私の場合のように)
goto /etc/default/grub
はいの場合は削除します。
ファイルを保存した後にコマンドを実行する
Sudo update-grub
そしてシステムを再起動します
最初にモニターコードを確認してください
echo $DISPLAY
デバイスコードを確認
Sudo lspci |grep -i vga
xorgを設定することでこの問題を解決しました。ソリューションは/etc/X11/xorg.conf.d/10-monitor.conf
に設定ファイルを作成しています
10-monitor.confには次のような構成が含まれている必要があります
Section "Monitor"
Identifier "Monitor0"`
EndSection
Section "Device"
Identifier "Device0"`
Driver "radeon"
EndSection
Section "Screen"
Identifier "Screen0" #Collapse Monitor and Device section to Screen section
Device "Device0"
Monitor "Monitor0"
SubSection "Display"
Depth 16
Modes "1920x1080_60.00" #Choose the resolution
EndSubSection
EndSection
グッドラック