首先,直接執行xrandr檢視下解析度的情況:
$ xrandr
screen 0: minimum 320 x 200, current 1280 x 1024, maximum 4096 x 4096
lvds1 connected (normal left inverted right x axis y axis)
1024x600 60.0 +
800x600 60.3 56.2
640x480 59.9
vga1 connected 1280x1024+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1024x768 60.0 *
800x600 60.3 56.2
848x480 60.0
640x480 59.9
標星號的那行就是我正在使用的解析度。
下面用cvt命令生成乙個modeline,為後續新增解析度作準備:
$ cvt 1440900
# 1440x900 59.89 hz (cvt 1.30ma) hsync: 55.93 khz; pclk: 106.50 mhz
modeline "1440x900_60.00" 106.50 1440 1528 1672 1904 900 903 909 934 -hsync +vsync
再執行xrandr --newmode來建立乙個解析度模式,使用「modeline」後的內容(--rmmode刪除這個模式):
$ xrandr --newmode "1440x900_60.00" 106.50 1440 1528 1672 1904 900 903 909 934 -hsync +vsync
接著用xrandr --addmode把這個模式新增到顯示器上(--delmode把這個模式從該顯示器上移除):
$ xrandr --addmode vga1 "1440x900_60.00
"
最後是應用這個模式:
$ xrandr --output vga1 --mode "1440x900_60.00
"
到此,我的螢幕看上去就清爽多了。
用xrandr檢視一下:
$ xrandr
screen 0: minimum 320 x 200, current 1440 x 900, maximum 4096 x 4096
lvds1 connected (normal left inverted right x axis y axis)
1024x600 60.0 +
800x600 60.3 56.2
640x480 59.9
vga1 connected 1440x900+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1024x768 60.0
800x600 60.3 56.2
848x480 60.0
640x480 59.9
1440x900_60.00 59.9*
設定完後我的螢幕向左偏出了約5個畫素,直接在顯示器(硬體)上調就可以了。
參考:但是重啟系統以後發現還是1024*768的解析度,而且也還是沒有1440*900的選項
最後是應用這個模式,在終端輸入:
$ xrandr --output vga1 --mode "1440x900_60.00"
這時螢幕解析度應該已經變成1440*900了,但是重啟後還是會變回1024*768,所以需要將此模式儲存並作為預設解析度。根據luojie-dune提供的方法:
在終端輸入:$sudo gedit /etc/x11/xorg.conf
然後在裡面貼上入:
section "monitor
"identifier
"configured monitor
"modeline
"1024x768_60.00
"63.50
1024
1072
1176
1328
768771
775798 -hsync +vsync
modeline
"1440x900_60.00
"106.50
1440
1528
1672
1904
900903
909934 -hsync +vsync
option
"preferredmode""
1440x900_60.00
"endsection
section
"screen
"identifier
"default screen
"monitor
"configured monitor
"device
"configured video device
"endsection
section
"device
"identifier
"configured video device
"endsection
儲存。重啟後終於變成1440*900了。
Ubuntu解析度設定
我的一台11寸上網本,裝的ubuntu。最近外接了乙個19寸顯示器。解析度最多只能是1024x768。顯示器設定裡顯示 未知 顯示器。用下面的命令可以看到顯示卡的資訊 lspci grep vga 00 02.0 vga compatible controller intel corporation...
ubuntu設定解析度
裝過ubuntu的虛擬機器人應該都知道,剛剛裝完系統時,解析度小的令人髮指,根本就不能愉快的使用,所以必須調整,但是有些解析度ubuntu裡面也沒有,這就需要我們自己自定義。1.輸入 cvt 1920 1080 返回的結果是 1920x1080 59.96 hz cvt 2.07m9 hsync 6...
ubuntu 解析度調整
版本資訊描述 ubuntu 18.04 lts 安裝了ubuntu後解析度和顯示器不匹配。xrandr命令不能給出相關資訊。因此嘗試了不同的方法。這是別人在stackoverflow上回答的最多的一種方法 gtf 1920 1080 601920x1080的解析度,60hz重新整理頻率 於是可以得到...