web-dev-qa-db-ja.com

「/etc/apt/sources.list.d/ディレクトリにある無効なファイル名拡張子を持つファイルを無視する方法」

13.10を14.04にアップグレードしてから、インストール、更新、アップグレードなどを行うたびに、これらの迷惑なメッセージが表示されます。

N: Ignoring file 'webupd8team-Java-raring.list.disable' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension 
N: Ignoring file 'bumblebee-stable-raring.list.disable' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension 
N: Ignoring file 'Steam.list.disable' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
N: Ignoring file 'ubuntu-x-swat-x-updates-raring.list.disable' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
N: Ignoring file 'xorg-edgers-ppa-raring.list.disable' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
N: Ignoring file 'webupd8team-Java-raring.list.disable' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
N: Ignoring file 'bumblebee-stable-raring.list.disable' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
N: Ignoring file 'Steam.list.disable' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
N: Ignoring file 'ubuntu-x-swat-x-updates-raring.list.disable' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
N: Ignoring file 'xorg-edgers-ppa-raring.list.disable' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension

メッセージに記載されている根本的な問題を修正するにはどうすればよいですか?

編集:時々、上記のメッセージに追加のメッセージが追加されます:

W: GPG error: http://www.duinsoft.nl debs Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY E18CE6625CB26B26
W: Failed to fetch http://ppa.launchpad.net/person/ppa/ubuntu/dists/karmic/main/binary-AMD64/Packages  404  Not Found

W: Failed to fetch http://ppa.launchpad.net/person/ppa/ubuntu/dists/karmic/main/binary-i386/Packages  404  Not Found

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

そして時々、私は他の人かもしれませんが、正確なメッセージをもう見つけることができません。

13
Flair

最初の問題を修正するには、ターミナルでこれを実行します。

Sudo rm /etc/apt/sources.list.d/*.disable

(PPAを無効にしたとき、古いバージョンのパッケージ管理ツールはこれらのファイルを残しました。それらを削除することは非常に安全です)

2番目の問題は、古いKarmicリポジトリに由来します。ターミナルでこれを実行するものを見つけるには:

cd /etc/apt

grep -rw karmic *

どのリポジトリに由来するかがわかれば、簡単に無効化/削除できます。

10
sмurf

多分あなたはこのコマンドを試してみてください:

Sudo sh -c "echo 'Dir::Ignore-Files-Silently:: \"(.save|.distupgrade)$\";' > /etc/apt/apt.conf.d/99ignoresave"

4
user512323

私の場合、/ etc/apt/sources.list.d /ディレクトリにある* .saveファイルにメッセージを送信していました。それらを削除しました。現在、そこには* .listファイルのみが存在します。そして、それらの警告は減少しました。

0
csonuryilmaz

Ubuntu MATE 15.04でも同様の問題がありました。後

Sudo sh -c "echo 'deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main' > /etc/apt/sources.list.d/pgdg.list"

そして

wget --quiet -O - http://apt.postgresql.org/pub/repos/apt/ACCC4CF8.asc | Sudo apt-key add -

そして

Sudo apt-get update

私はこのメッセージがありました:

N: Ignoring file 'pgdg.listwget' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension

私はこのように解決しました:

Sudo mv /etc/apt/sources.list.d/pgdg.listwget /etc/apt/sources.list.d/pgdg.list
0
UbunTusek