Acer Aspire S3 的屏幕分辨率为 12.10

Acer Aspire S3 的屏幕分辨率为 12.10

我是 Linux 新手,最近在我的笔记本电脑上安装了 Linux 12.10 和 Windows。

最初 3D 屏幕效果(即 Docky)不起作用,我尝试了不同的方法,例如安装和重新安装nvidia-currentcompiz等等......

现在,我觉得我彻底搞砸了显示驱动程序。虽然现在所有效果都正常,但我无法获得除 640x480 以外的任何屏幕分辨率。

谁能告诉我如何准确找出问题所在以及如何修复它?

答案1

好的,我自己解决了。如果有人遇到这个问题,我会概述对我有帮助的解决方案。

  1. 由于这台笔记本电脑的显卡是英特尔的,所以我删除了 nvidia-current:

    sudo apt-get --purge remove nvidia-current

  2. 更改了 /etc/X11/xorg.conf 文件:

    sudo gedit /etc/X11/xorg.conf

像这样:

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    Modeline       "1366x768_59.90"  106.29  1366 1520 1672 1904  768 901 904 932  -HSync +Vsync
    Option         "PreferredMode" "1366x768_59.90"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "intel"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Modes "1366x768_59.90"
        Depth       24
    EndSubSection
EndSection

关键是将“英特尔”驱动程序放在那里,这可能实际上就足够了,但我还自己添加了分辨率,最终为我完成了它。

相关内容