1. 程式人生 > >ubuntu 手動修改解析度為1920 X 1080 的兩種方式

ubuntu 手動修改解析度為1920 X 1080 的兩種方式

方案一(臨時性,重啟會失效):

1、開啟終端。輸入:cvt 1920 1080

出現有modeline 的提示。

2、使用 xrandr 建立新的 mode,--newmode 後面跟剛剛 cvt 產生的 modeline 後面的資訊,如果去掉“_60.00”就可以在顯示器首選項中看到。

$ sudo xrandr --newmode "1920x1080_60.00"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync

3、新增新的 mode,--addmode 後面第一個引數是 命令xrandr 顯示的列表中,目標輸出裝置的名稱,

$sudo xrandr --addmode VGA-1 "1920x1080_60.00"

4、 將解析度應用到指定的輸出裝置

$ sudo xrandr --output  VGA-1 --mode "1920x1080_60.00"

 

方案二(永久性,重啟也不失效)

新增 /etc/X11/xorg.conf 檔案,將此模式儲存為預設解析度。

1、$ sudo vim /etc/X11/xorg.conf(若沒有安裝vim,可以使用“sudo gedit /etc/X11/xorg.conf”)

貼上以下內容:

Section "Monitor"

Identifier "Configured Monitor"

Modeline "1920x1080_60.00"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync

Option "PreferredMode" "1920x1080_60.00"

EndSection

Section "Screen"

Identifier "Default Screen"

Monitor "Configured Monitor"

Device "Configured Video Device"

EndSection

Section "Device"

Identifier "Configured Video Device"

EndSection

2、儲存。重啟後就變成1920x1080了。

若是沒有worg.conf檔案,可以將上述內容儲存為xorg.conf檔案。