web-dev-qa-db-ja.com

Ubuntuプラグイン14.04 LTS 64ビットバージョンにフラッシュプラグインをインストールする方法

私がオンライン動画を再生すると、多くの瞬きやその他の障害でしばしば中断されます。フラッシュプレーヤーがクラッシュしたというエラーメッセージが何度も表示されました。コマンドラインでフラッシュプラグインをインストールしようとすると、このエラーが表示されました。誰も私がこの対立から抜け出すのを助けることができますか?

$ Sudo apt-get install flashplugin-installer
[Sudo] password for agha:
E: dpkg was interrupted, you must manually run 'Sudo dpkg --configure -a' 
 to correct the problem

完全なログは次のとおりです。

Ign http://in.archive.ubunutu.com trusty-updates/restricted Translation-en_IN
Ign http://in.archive.ubunutu.com trusty-updates/universe Translation-en_IN
Ign http://in.archive.ubunutu.com trusty-backports/main Translation-en_IN
Ign http://in.archive.ubunutu.com trusty-backports/multiverse Translation-en_IN
Ign http://in.archive.ubunutu.com trusty-backports/restricted Translation-en_IN
Ign http://in.archive.ubunutu.com trusty-backports/universe Translation-en_IN
Fetched 964 kB in 42s (22.4 kB/s)
E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable)
E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it?
agha@agha-GA-78LMT-USB3:~$ Sudo apt-get install wine1.7 winetricks
E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable)
E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it?
agha@agha-GA-78LMT-USB3:~$ Sudo dpkg --configure -a
dpkg: error: dpkg status database is locked by another process
agha@agha-GA-78LMT-USB3:~$ Sudo apt-get install -f
E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable)
E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it?
3

Sudo dpkg --configure -aを実行すると、自動的に修正できるはずです。

または

Sudo apt-get install -f(壊れたパッケージを修正)し、Sudo dpkg --configure -aを再度実行してください。

リンクに従ってUbuntuのフォームにフラッシュプレーヤーをインストールする方法を参照してください。
http://www.wikihow.com/Install-Flash-Player-on-Ubunt

更新された回答:

dpkgがロックされています。次の解決策を試して、上記(リンク)の手順に従ってフラッシュpalyerをインストールしてください。

管理ディレクトリ(/ var/lib/dpkg /)をロックできないのは、それを使用する別のプロセスですか?

3
Naive

次は私のために働く!このエラーが発生したときに、ワイヤレスドライバーをインストールしようとしました。ファイルとロックファイルも削除する必要がありました。

Sudo rm /var/lib/apt/lists/lock
Sudo rm /var/cache/apt/archives/lock
cd /var/lib/dpkg/updates
Sudo rm *
Sudo apt-get update

そして、apt-get installをインストールしたいパッケージに対して実行できます

13
Aerosum