web-dev-qa-db-ja.com

プリマスパッケージを安全に削除または修復する方法

私は壊れたパッケージを持っています...今のところ恐ろしいものは何もありません。問題は、それがプリマスであり、それを削除すると、システムのパッケージの半分が削除されるようだということです...だから、ここに私の質問があります:実際に削除するか、plymouth ;再インストールするために、少なくとも端末を残しますか?または私は間違いなく運命にあるのでしょうか?

私が言うことを説明するだけです。これはの結果です

apt-get --reinstall install plymouth:

julien@julien-desktop:~$ Sudo apt-get --reinstall install plymouth
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Reinstallation of plymouth is not possible, it cannot be downloaded.
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 plymouth : Depends: libdrm-nouveau1 (>= 2.4.11-1ubuntu1~) but it is not installable
            Recommends: plymouth-themes-all but it is not installable
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

または

apt-get -fインストール

(まあ基本的には同じです)

julien@julien-desktop:~$ Sudo apt-get -f install
[Sudo] password for julien: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... failed.
The following packages have unmet dependencies:
 plymouth : Depends: libdrm-nouveau1 (>= 2.4.11-1ubuntu1~) but it is not installable
            Recommends: plymouth-themes-all but it is not installable
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
E: Unable to correct dependencies
julien@julien-desktop:~$ 

どんなアイデアでも大歓迎です...

2

削除することは可能です。 バグレポート#556372 は問題を説明しています。 Dave Lentzには [〜#〜] ppa [〜#〜] があり、これらの問題を回避します。したがって、PPAを追加する必要があります。

Sudo apt-add-repository ppa:dtl131/mediahacks
Sudo aptitude update

mountallをバージョン(2012年4月現在)に更新する必要があります:2.25ubuntu2〜mediahacks1。これが完了したら、システムの半分を削除せずにプリマスを削除できます。

2
qbi