APT-GET kullanımında "Ignoring File..." Hatası ve Çözümü

fatal

Active Member
Ubuntu 10.10'da paket güncellemesi yaparken genel olarak şuna benzer uyarılar aldığınızda:

Kod:
N: Ignoring file 'medibuntu.list.save' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
N: Ignoring file 'tualatrix-ppa-maverick.list.save' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension

veya

Kod:
N: Geçersiz bir dosya uzantısı içerdiğinden 'yannubuntu-boot-repair-raring.list.save' dosyası '/etc/apt/sources.list.d/' dizininde yoksayıldı.
N: Geçersiz bir dosya uzantısı içerdiğinden 'tiheum-equinox-raring.list.save' dosyası '/etc/apt/sources.list.d/' dizininde yoksayıldı.

Yapmanız gereken:

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

Diğer bir yol:

Kod:
sudo rm -f /etc/apt/sources.list.d/*.save
sudo rm -f /etc/apt/sources.list.d/*.distUpgrade
 
Üst