I am using Linux Mint 17 Cinnamon 64 bit and recently got this error,
“Ignoring file ‘getdeb.list.bck’ in directory ‘/etc/apt/sources.list.d/’ as it has an invalid filename extension”
So fix this I used this simple command. It moves all the files ended with .bck in /etc/apt/sources.list.d directory to your ~/Desktop directory.
sudo find /etc/apt/sources.list.d/ -type f -name "*.bck" -exec mv {} ~/Desktop \;
Published by
Jay Forrest
Jay Forrest is a long‑time Linux enthusiast who switched to Ubuntu in 2008 after a Windows XP virus convinced him to embrace open‑source software. A former host of the Linux User Podcast, Jay has worked in technical support for AOL, EarthLink, and Route 66 Casino, built his first 486 in the 90s, and has provided web design for businesses and nonprofits. He works with HTML, JavaScript, CSS, and basic PHP, and enjoys exploring open‑source software. As a former Fedora Ambassador, Jay is dedicated to sharing why Linux—secure, stable, and open—remains his platform of choice.
View all posts by Jay Forrest