Debian:分辨率非常低和“未知监视器”问题

Debian:分辨率非常低和“未知监视器”问题

编辑:我已经安装了嘎吱嘎吱(或者 #!,一个基于 Debian 的发行版),这似乎解决了我所有的分辨率问题。


我在使用 Linux Mint 几个月后刚刚安装了 Debian。

一切都很顺利,但是,当安装完成后,我注意到分辨率设置得非常低。

我去了System > Preferences > Monitors,它告诉我可用的最高分辨率是 1024 * 768。

它也无法正确识别我的显示器,因为它被列为“未知”,唯一的旋转选项是“普通的”刷新率是“0赫兹”(尽管我目前对刷新率没有任何问题)。

如何获得最佳分辨率(原始分辨率)?

xrandr说:

xrandr: Failed to get size of gamma for output default
Screen 0: minimum 800 x 600, current 1024 x 768, maximum 1024 x 768
default connected 1024x768+0+0 0mm x 0mm
   1024x768        0.0* 
   800x600        61.0 

lspci -v | grep VGA说:

00:02.0 VGA compatible controller: Intel Corporation Sandy Bridge Integrated Graphics Controller (rev 09) (prog-if 00 [VGA controller])
01:00.0 VGA compatible controller: ATI Technologies Inc NI Seymour [AMD Radeon HD 6470M] (prog-if 00 [VGA controller])

我不确定为什么似乎有两个显卡。

目前我正在尝试安装非免费的 AMD/ATI r6xx r7xx 驱动程序。这是一个好的举措吗?<- 这没有改变任何东西

我也丢失了Xorg.conf文件。<- 正如所建议的,我已经创建了一个,但这只会使我的计算机在 Grub 之后无法开始显示任何内容。我得把它从 Ubunto 中删除。

如果有更多可能有用的信息,请告诉我,以便我分享。

答案1

编辑:我找到了一个实际的解决方案,不需要您安装 CrunchBang 而不是 Debian!

我使用的是 Debian Squeeze,它使用的内核版本显然不支持我的显卡。

解决方案只是升级到 Debian 测试 (Wheezy)。

将您的更改etc/apt/sources.list为:

deb http://ftp.hr.debian.org/debian testing main contrib non-free
deb-src http://ftp.hr.debian.org/debian testing main contrib non-free

deb http://ftp.debian.org/debian/ wheezy-updates main contrib non-free
deb-src http://ftp.debian.org/debian/ wheezy-updates main contrib non-free

deb http://security.debian.org/ wheezy/updates main contrib non-free
deb-src http://security.debian.org/ wheezy/updates main contrib non-free

然后执行sudo apt-get update && sudo apt-get dist-upgrade.

嘭!现在您拥有了较新的(并且几乎完全稳定,例如,您可能不会遇到任何错误)版本的 Debian,它可能比旧版本更好地支持您的卡。


解决方案2:

我已经安装了#!(CrunchBang)所有的问题都消失了。

#!几乎是带有一些默认配置的 Debian 和默认的 Openbox。

答案2

显示器无法正确自动检测的情况很少见。尝试确保安装了适合您的显卡的驱动程序,如果您使用专有驱动程序,请尝试使用它们的实用程序生成足够的文件xorg.conf。或者您可以尝试自行编辑或创建。 (不要忘记将驱动程序更改为您正在使用的驱动程序。

Section "ServerLayout"
    Identifier    "layout1"
    Screen      0 "screen1" 0 0
EndSection

Section "Monitor"
    Identifier  "monitor1"
    Option      "VendorName" "ACME"
    Option      "ModelName" "Generic Autodetecting Monitor"
EndSection

Section "Device"
    Identifier  "videocard1"
    Driver      "nv" # change your driver here.
EndSection

Section "Screen"
    Identifier "screen1"
    Device     "videocard1"
    Monitor    "monitor1"
    DefaultDepth     24
    SubSection "Display"
        Viewport   0 0
        Depth      24
            Modes      "1920x1080" "1280x720" "1024x768"
    EndSubSection
EndSection

添加或删除您想要的分辨率。

相关内容