解决Ubuntu 14.04 built-in display 分辨率较低的方法

来源:互联网 发布:java多线程挂起和阻塞 编辑:程序博客网 时间:2024/06/17 16:23

打开终端,输入

sudo nona /etc/X11/xorg.conf

将下列代码粘贴复制到终端,

Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
        HorizSync   28.0 - 70.0
        VertRefresh     56.0 - 75.0
EndSection


Section "Device"
        Identifier  "VMware SVGA"
        Driver      "vesa"
EndSection


Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        SubSection "Display"
                Viewport   0 0
                Depth     24
                Modes     "1920x1080_60.00"
        EndSubSection
EndSection

Ctrl+X保存退出,然后重启电脑,你会发现分辨率变回原来的分辨率。(亲测有效)

阅读全文
0 0