web-dev-qa-db-ja.com

Unityはfglrx Radeon HD 7790を去りました

追加のドライバのダイアログが私にドライバを提案しないため、第3ステップ(AMDバイナリから.debをビルド)を使用して、Radeon HD 7790 OCの専用ドライバをインストールしました このガイドAMDサイト (デスクトップグラフィックス-> Radeon HD-> Radeon HD 7790 PCIE)にも独自のカテゴリ/シリーズがあるため、7790は別のドライバーを使用しているように思われます。エラー。とにかく再起動した後、Unity環境が失われ、キーバインドでウィンドウを開くことができますが、それだけです。不足しているUnityの修正(compizによるリセットなど)はすべて機能しませんでした。

fglrxinfo出力:

X Error of failed request:  BadRequest (invalid request code or no such operation)
Major opcode of failed request:  155 (ATIFGLEXTENSION)
Minor opcode of failed request:  66 ()
Serial number of failed request:  13
Current serial number in output stream:  13

これは私の xorg.confによって生成されたaticonfig --initial

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
EndSection

これはUbuntu Raringにあります。

1
user182867

Unityを使用してubuntu 13.04 AMD64にHD7790 fglrxドライバーをインストールできました。これは正確なステップバイステップではありません-私はどのステップを実行したかを思い出そうとしています。保証はありません。

  1. Fglrxドライバーを削除しますSudo apt-get remove --purge fglrx fglrx-amdcccle fglrx-updates fglrx-amdcccle-updates xvba-va-driver
  2. http://wiki.cchtml.com/index.php/Ubuntu_Raring_Installation_Guide#Before_you_start (作成されたdebsをインストールするためのインストール前提条件から)のガイドを使用して、別のドライバーを試しましたが、13.4でのみ機能します http://www2.ATI.com/drivers/linux/AMD-catalyst-13.4-linux-x86.x86_64.Zip
  3. rm /etc/X11/xorg.conf多分あなたはバックアップをするべきですが、私は設定が壊れていました
  4. Sudo amdconfig --initial -f
  5. Sudo reboot#起動後、デスクトップの背景のみが表示された
  6. を押してターミナルを開きます Ctrl+Alt+T
  7. glxgears#エラーなし、1400 FPS以上...ドライバーがインストールされ、機能しています
  8. Sudo apt-get install compizconfig-settings-manager#ccsmをインストール
  9. ccsm#rootとしてではなく、標準ユーザーとして実行します。私の場合、Unityプラグインが無効になりました
  10. Unityプラグインを有効にし、別のモジュールを有効にするためのリクエストを確認して、キーバインディングを書き換えます
1
user193521