sudo apt-get update エラー: 間違ったsources.listエントリまたは不正なファイル

sudo apt-get update エラー: 間違ったsources.listエントリまたは不正なファイル

最近、npm と nodejs をインストールしようとしましたが、いくつかエラーが発生したため、sudo apt-get update を実行するように提案されました。

sudo apt-get update を実行すると、次のエラーが発生します。

 Failed to fetch http://archive.ubuntu.com/ubuntu/dists/trusty/Release  Unable to find expected entry 'universe/binary-amd64/Packages' in Release file (Wrong sources.list entry or malformed file)

 E: Some index files failed to download. They have been ignored, or old ones used instead.

の出力はcat /etc/apt/sources.list次のようになります。

deb http://archive.ubuntu.com/ubuntu trusty main universe restricted multiverse

答え1

これは、ほとんどの PPA が古くなっているか、もう存在しないためです。

/etc/sources.list(または 内のファイル)を確認し/etc/sources.list.d、エラーの原因となっている行を削除または修正してください。

この回答もご覧ください作成者: fossfreedom良い詳細な説明があれば、役に立つと思います。

関連情報