web-dev-qa-db-ja.com

パッケージの一貫性が非常に悪い状態です

デスクトップにUbuntu 13.10があります。「D-Link DWR-730」3Gモデムドライバーをインストールしたかったのですが、Ubuntuのデフォルトの自動再生ソフトウェアでは「カーネルはサポートされていません」と表示されます。

dpkg -iコマンドを実行して.depファイルを手動でインストールしましたが、その後、apt-getコマンドごとにエラーが返され、apt-get -f installを実行してこれを修正するように指示されます。

apt-get -f installを実行しましたが、それでもエラーが返され、apt-getから何もインストールできません。 apt-getエラーは次のとおりです。

処理中にエラーが発生しました:flashplugin-installer E:サブプロセス/ usr/bin/dpkgがエラーコードを返しました(1)

apt-get remove flashplugin-installerを実行しましたが、エラーも返されます。

Sudo apt-get -f installは次の出力を提供します。

Reading package lists... Done Building dependency tree
Reading state information... Done 
0 upgraded, 0 newly installed, 0 to remove and 3 not upgraded. 1 not fully installed or removed.
Need to get 0 B/7,008 B of archives. After this operation, 0 B of additional disk space will be used. 
dpkg: error processing flashplugin-installer (--configure): Package is in a very bad
inconsistent state - you should reinstall it before attempting configuration.
Errors were encountered while processing: flashplugin-installer
E: Sub-process /usr/bin/dpkg returned an error code (1)
1
Hossein

フラッシュプラグインを完全に削除し、作業を再開します

Sudo dpkg --remove --force-remove-reinstreq  flashplugin-installer

その後、再度インストールを試みることができます。

Sudo apt-get install flashplugin-installer
0
kamil

私は多くのことを試してみましたが、これはうまくいきました!

Sudo dpkg --remove --force-all (packagename)

この後でも問題が解決しない場合は、/var/libパッケージ名を接頭辞として名前を付けて使用します

Sudo chmod 777 filename

それらのすべてで、それらのコピーを作成し(何かがうまくいかない場合に備えて)、次に使用します

Sudo rm filename

それらを削除してから、これを再度実行するには

Sudo dpkg --remove --force-all gcc-4.8-base:i386
1
user260214