web-dev-qa-db-ja.com

FGLRXがインストールされません。問題を修正できません。壊れたパッケージを保持しています

Sudo apt-get install fglrxを実行すると、次の出力が得られます。

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help resolve the situation:

The following packages have unmet dependencies:
 fglrx : Depends: xorg-video-abi-11 but it is not installable or
                  xorg-video-abi-12 but it is not installable or
                  xorg-video-abi-13 but it is not installable or
                  xorg-video-abi-14 but it is not installable or
                  xorg-video-abi-15
E: Unable to correct problems, you have held broken packages.

残念ながら、私はWindowsサーバーでの作業に慣れており、Ubuntuに慣れていません。

10
Cleadus Fetus

残念ながら、これはUbuntu 14.04および12.04の最新アップデートのバグが原因です。

apt-getは、14.04.2および12.04.5でfglrxまたはfglrx-updatesのインストールに失敗します

修正するには:

  1. ハードウェア有効化スタックを削除します

    • Ubuntu 14.04(テスト済みで動作確認済み):

      Sudo apt-get install --install-recommends xserver-xorg libgl1-mesa-glx libegl1-mesa-drivers
      
    • Ubuntu 12.04(未テスト):

      Sudo apt-get install --install-recommends xserver-xorg libgl1-mesa-glx
      

    何らかの理由で、最初にエラーが返されてから2回実行する必要がありました。

  2. 余分なパッケージをクリーンアップする

    Sudo apt-get autoremove
    
  3. Fglrxをインストールする

    Sudo apt-get install fglrx
    
  4. リブート

7
bmaupin

シナプスを開きます。持っていない場合は、次のコマンドでインストールします

Sudo apt-get install synaptic

端末上で。 Synapticはapt-getに似たパッケージマネージャーですが、グラフィカルインターフェイスを備えています。

シナプスでは、画面の左下にcustom filtersというオプションがあり、上のフィルターからbrokenを選択します。

synaptic window

おそらく、そのリストにいくつかのパッケージがあるでしょう。完全に削除するには、それらを右クリックして選択し、適用をクリックします。以前の失敗したインストールを削除した後、fglrxのインストールを再試行します。削除されたパッケージの一部を再インストールする必要がある場合があります。

0
Ivan Lerner