随手拍纪录生活

 

Linux Mint 自定义分辨率方法

以1920x1080分辨率为例,以下是第二种方法的操作步骤:

1、在终端输入:

$ cvt 1920 1080

#### 得到以下信息# 

1920x108059.96 Hz (CVT 2.07M9) hsync: 67.16 kHz; pclk: 173.00 MHz

Modeline "1920x1080_60.00"173.0019202048224825761080108310881120 -hsync +vsync

2、在终端输入:

$ xrandr            

#### 得到以下信息Virtual1 connected 1680x1050+0+0 (normal left inverted right x axis y axis) 0mm x 0mm

3、在终端输入:

$ sudo gedit /etc/X11/xorg.conf

打开xorg.conf文件,录入以下信息:

Section "Monitor"

    Identifier "Configured Monitor"

    Modeline "1920x1080_60.00"173.0019202048224825761080108310881120 -hsync +vsync //来自步骤1

    Option "PreferredMode""1920x1080_60.00"//来自步骤1

EndSection

Section "Screen"

    Identifier "Default Screen"

    Monitor "Configured Monitor"

    Device "Configured Video Device"

EndSection

Section "Device"

    Identifier "Configured Video Device"

EndSection

4、保存,重启,查看效果OK

 

如上

 


评论
Top

© Johnny的未命名地带 | Powered by LOFTER