web-dev-qa-db-ja.com

Kubuntuのパッケージリストが壊れている問題を解決するにはどうすればよいですか?

最近、システムに問題が発生しています。問題は次のとおりです。

1。 SynapticManagerをまったく開くことができません。次のエラーを受信します:


E: Encountered a section with no Package: header
E: Problem with MergeList /var/lib/apt/list/archive.ubuntu.com_ubuntu_dists_natty_main_binary-i386_Packages
E: The package lists or status file could not be parsed or opened.
E: _cache->open() failed, please report.

2。更新マネージャーで次のエラーを受け取ったものを更新できません:


Could not initialize the package information

An unresolvable problem occurred while initializing the package information.

Please report this bug against the 'update-manager' package and include the following error message:

'E:Encountered a section with no Package: header, E:Problem with MergeList /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_natty_main_binary-i386_Packages, E:The package lists or status file could not be parsed or opened.'

私のシステム情報は次のとおりです:

オペレーティングシステム:Kubuntu11.04。
カーネルバージョン:2.6.38-8-汎用。
カーネルアーチ:i686。
デフォルトのシェル:/ bin/bash。
Xサーバーバージョン:X.OrgXサーバー1.10.1GCCバージョン:4.5.2


私のソフトウェアリスト(ほとんどすべてを無効にした後)は次のようになりました:

Canonical Partners(Canonicalがパートナー向けにパッケージ化したソフトウェア): http://archive.canonical.com/ubunt


端末で次のことも試しました:

Sudo apt-get update && Sudo apt-get install -f

しかし、実りある結果はありません。

私はここに投稿されたいくつかの情報に頼っていました: http://netgator.blogspot.com/2011/01/software-index-is-broken-on-ubuntu.html


問題を解決するための提案/アイデアをいただければ幸いです。

よろしくお願いします

1
CompilingCyborg

ターミナルセッションでこれを行います。

$ Sudo rm /var/lib/apt/lists/*
$ Sudo apt-get update

これにより、そこにあるすべてのファイルの新しいコピーが取得されます。

そうすれば、すべてが正常に機能するはずです。

1
Majenko