[Linux] remove “Ignoring file in directory /etc/apt/sources.list.d/ as it has an invalid filename extension
To fix your first problem run this in a terminal:
sudo rm /etc/apt/sources.list.d/*.disable
(An older version of the package management tool left these files when you disabled the PPAs. Removing them is pretty safe)
Your second problem comes from and old Karmic repository. To find out which one run this in a terminal:
cd /etc/apt
grep -rw karmic *
Once you know which repository it comes from it would be easy to disable/remove it.
Ubuntu – How do remove “Ignoring file in directory /etc/apt/sources.list.d/ as it has an invalid filename extension – iTec
Since upgrading 13.10 to 14.04, I get these annoying messages each time I install, update, upgrade, and so on: N: Ignoring file 'webupd8team-java-raring.list.disable' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension N: Ignori
itectec.com