web-dev-qa-db-ja.com

更新は失敗します。ソフトウェアをインストールできません!

Sudo apt-get updateをしました

Reading package lists... Error!                                                
E: Encountered a section with no Package: header
E: Problem with MergeList /var/lib/apt/lists/in.archive.ubuntu.com_ubuntu_dists_trusty_main_i18n_Translation-en
E: The package lists or status file could not be parsed or opened.

ソフトウェアをインストールしようとすると、次のような同じエラーが表示されます。

Sudo apt-get install gnumeric
Reading package lists... Error!
E: Encountered a section with no Package: header
E: Problem with MergeList /var/lib/apt/lists/in.archive.ubuntu.com_ubuntu_dists_trusty_main_i18n_Translation-en
E: The package lists or status file could not be parsed or opened

シナプスパッケージエラーを開くと、起動時に同じエラーが表示されます。

私は試した

Sudo apt-get clean

Sudo apt-get dpkg --configure -a

私はまだ立ち往生しています。どうすれば修正できますか?

8
Faiz

次のコマンドを発行します。

 Sudo rm /var/lib/apt/lists/* -vf && Sudo apt-get update

それはあなたの問題を解決します。

15
Frantique