web-dev-qa-db-ja.com

依存関係が満たされていないパッケージが壊れている-fglrxをインストールできない

私はUbuntuを初めて使い、生き残ろうとしていますが、これを理解することはできません-うまくいけば簡単です!

Ubuntu Software Centerによれば、現在インストールされているソフトウェアに問題があるため、新しいソフトウェアをインストールできません。この問題を今すぐ修復しますか?

私がそうするとき、それはただ失敗します。

AMDのサイトからビデオカード用のより良いドライブをインストールしようとしたときにすべてが始まったと思います。私が試したターミナルウィンドウからの情報に基づいて:

Sudo apt-get install -f

そして私は得た

relskhan@Ceti-Alpha-V:~$ Sudo apt-get install -f
[Sudo] password for relskhan: 
Sorry, try again.
[Sudo] password for relskhan: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
  fglrx
The following NEW packages will be installed:
  fglrx
0 upgraded, 1 newly installed, 0 to remove and 97 not upgraded.
2 not fully installed or removed.
Need to get 0 B/59.2 MB of archives.
After this operation, 260 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
(Reading database ... 280931 files and directories currently installed.)
Preparing to unpack .../fglrx_2%3a13.350.1-0ubuntu2_AMD64.deb ...
Unpacking fglrx (2:13.350.1-0ubuntu2) ...
dpkg: error processing archive /var/cache/apt/archives/fglrx_2%3a13.350.1-0ubuntu2_AMD64.deb (--unpack):
 trying to overwrite '/etc/acpi/fglrx-powermode.sh', which is also in package fglrx-core 2:14.501-0ubuntu1
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Processing triggers for ureadahead (0.100.0-16) ...
Errors were encountered while processing:
 /var/cache/apt/archives/fglrx_2%3a13.350.1-0ubuntu2_AMD64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

私は間違いなく途方に暮れていて助けが必要です!

2
Joseph

output は、以下のパッケージに満たされていない依存関係があることを示します。

  • fglrx-amdcccle
  • xvba-va-driver

つまり、APTは上記のパッケージをインストールしようとしましたが、途中で失敗しました。他の必要なパッケージがシステムで利用できないためです。
したがって、他の作業を行う前に上記のパッケージを削除する必要があります。ターミナルで実行:

Sudo dpkg --purge --force-all fglrx-amdcccle xvba-va-driver

その後、すべてのfglrx関連パッケージを削除できます。

Sudo apt-get remove --purge fglrx*  

新しいfglrxをインストールできます。

Sudo apt-get install fglrx-updates
1
Naveen