ATI 驱动程序问题,fglrxinfo 返回空显示错误,Xorg.conf 文件看起来很古怪

ATI 驱动程序问题,fglrxinfo 返回空显示错误,Xorg.conf 文件看起来很古怪

我有一台 HP dv6,配备 ati radeon hd 5650。它是一款出色的混合显卡。

我花了大量时间尝试正确安装此显卡的驱动程序。我这样做的主要原因是运行 gnome 3,当我从系统设置的附加驱动程序部分安装 fglrx 驱动程序时,它将无法正常工作。我知道运行 gnome 3 的愿望可能听起来微不足道,但我已将其作为我的使命。在使用 gnome 时,有没有办法简单地忽略 ati 显卡并使用 intel 显卡?

因此,在使用 wubi 重新安装 ubuntu 后,我立即本指南。

然而,我遇到了一些阻碍。当我运行 aticonfig 命令时,我得到了响应

PowerXpress error: Cannot stat '/usr/lib64/fglrx': No such file or directory

我在 /usr/lib 和 /usr/lib64 之间设置了一个符号链接。我不知道这是否正确,但它让我前进了。当我在调用 aticonfig 后重新启动计算机时,我最终在启动时挂起并出现黑屏。就像

Checking Blah            [ok]
.....
Checking Battery State   [ok]

有一些失败,但我看到的那些并不重要。因此我进入 tty1 并尝试运行命令 fglrxinfo,但我收到响应:

Error: unable to open display (null)

因此,我查看了我的 Xorg.conf 文件,其内容似乎很奇怪,如下所示:

Section "ServerLayout"
    Identifier   "aticonfig Layout"
    Screen     0 "aticonfig-Screen[0]-0" 0 0
EndSection

Section "Module"
EndSection

Section "Monitor"
    Identifier   "aticonfig-Monitor[0]-0"
    Option       "VendorName" "Ati Proprietary Driver"
    Option       "ModelName" "Generic Autodetecting Monitor"
    Option       "DPMS" "true"
EndSection


Section "device"
    Identifier   "aticonfig-Device[0]-0"
    Driver       "fglrx"
    BusID        "PCI:1:0:0"
EndSection

Section "Screen"
    Identifier   "aticonfig-Screen[0]-0"
    Device       "aticonfig-Device[0]-0"
    Monitor      "aticonfig-Monitor[0]-0"
    DefaultDepth    24
    Subsection "Display"
        Viewport  0 0
        Depth  24
    EndSubsection
Section

我尝试aticonfig --acpi-services=off按照其他线程的状态执行,但是没有效果。

我将非常感激任何能得到的帮助。

谢谢。

编辑

我发现,如果我删除我的xorg.conf文件,我至少可以启动并登录到 ubuntu 的 GUI

答案1

以下是我在 Intel/AMD 混合设置上使其运行的方法:

  • 通过添加以下 PPA 将 X.org 更新到最新版本:

    sudo apt-add-repository ppa:xorg-edgers/ppa
    sudo apt-get update && sudo apt-get dist-upgrade
    
  • 符号链接 lib 和 lib64 以避免 lib64 错误:

    sudo ln -s /usr/lib/ /usr/lib64/
    
  • 手动安装 ATI 驱动程序请勿构建 deb 包:

    sudo sh ./amd-driver-installer-12-1-x86.x86_64.run
    
  • 更新 X.org:

    sudo aticonfig --initial --nobackup
    
  • 此后,重新启动计算机。

答案2

我在 Ubuntu Precise x64(实际上是 Linux Mint Maya)中遇到了同样的问题。屏幕空白,没有其他内容。我必须输入登录密码,系统加载后,按 Alt-F1 至少打开了新的终端会话。由于互联网连接不起作用(它是 KDE,使用钱包来存储密码,尽管理论上你可以像用户登录一样盲目地输入它的密码),而不是安装最后一个 xorg(按照 Octavian),y 只是创建了符号链接:

sudo ln -s /usr/lib32/ /usr/lib/

然后重启。然后就成功了。

答案3

对于 ubuntu 14.4.2 - 我刚刚复制了 cp -r /usr/lib64/fglrx /usr/lib/。因为 aticonfig 将检查 fglrx 文件夹的权限,而且我ln -s始终rwxrwxrwx 知道这不是好的变体,但一切正常)

相关内容