ubuntu画面解像度設定
1338 ワード
なぜかUbuntuを再起動すると画面全体が広がり、近眼になったようで、急いで解像度を調整します.
xrandrは解像度を表示し、現在4種類のsizeが表示され、*番号付きは現在の解像度です.
カスタム解像度を追加し、xrandr--newmodeの後にコマンドの出力を追加します.
xrandr--listmonitorsを使用してoutputタイプを表示し、VGA-1、--addmodeコマンドに解像度を追加します.
最後にxrandr−s 1360 x 768を適用し、この解像度を適用した.
再起動後にカスタム解像度が保存されていないことに驚いたので、もう一度方法を探す必要があります.
xrandrは解像度を表示し、現在4種類のsizeが表示され、*番号付きは現在の解像度です.
cxy@cxy-QiTianB4360-B015:~$ xrandr
Screen 0: minimum 320 x 200, current 1024 x 768, maximum 8192 x 8192
VGA-1 connected primary 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1024x768 60.00*
800x600 60.32 56.25
848x480 60.00
640x480 59.94
HDMI-1 disconnected (normal left inverted right x axis y axis)
DP-1 disconnected (normal left inverted right x axis y axis)
カスタム解像度を追加し、xrandr--newmodeの後にコマンドの出力を追加します.
cxy@cxy-QiTianB4360-B015:~$ cvt 1360 768 60.02
# 1360x768 59.80 Hz (CVT) hsync: 47.72 kHz; pclk: 84.75 MHz
Modeline "1360x768_60.02" 84.75 1360 1432 1568 1776 768 771 781 798 -hsync +vsync
cxy@cxy-QiTianB4360-B015:~$ xrandr --newmode "1360x768_60.02" 84.75 1360 1432 1568 1776 768 771 781 798 -hsync +vsync
xrandr--listmonitorsを使用してoutputタイプを表示し、VGA-1、--addmodeコマンドに解像度を追加します.
cxy@cxy-QiTianB4360-B015:~$ xrandr --listmonitors
Monitors: 1
0: +*VGA-1 1024/271x768/203+0+0 VGA-1
cxy@cxy-QiTianB4360-B015:~$ xrandr --addmode VGA-1 "1360x768_60.02"
最後にxrandr−s 1360 x 768を適用し、この解像度を適用した.
再起動後にカスタム解像度が保存されていないことに驚いたので、もう一度方法を探す必要があります.