Edit: Update 27 May 2009: Here is the updated list to 27 May 2009, with corrections and additions.
Here is a list for apt repositories that I use for a few months, and who has not created any problem.
Attention to use your brain and read when you upgrade or install a software, problem may be just around the corner.
Remember to add the gpg key repository, unfortunately somewhat tedious operation.
———
Edit: This method, always stuck in sourceslist, does nothing more than read the /etc/apt/sources.list and import keys on all the repository therein. Just immetere konsole from the following code:
for i in $(grep -o -E “http.*.(gpg|asc|key)” /etc/apt/sources.list); do echo -n “$I “; wget $i -q -O – | sudo apt-key add -; done; keylist=””; for key in $(grep -o “[A-Fa-f0-9]{8}” /etc/apt/sources.list); do if [ -The “$(echo “$keylist”|grip “$key”)” ]; then keylist=”$keylist $key”; gpg –keyserver subkeys.pgp.net –recv $key && gpg –export –armor $key | sudo apt-key add -; be; done;
——–
The repository marked “********” are taken from sourceslist.netsons.org
SOURCES.LIST
#Ubuntu
deb http://it.archive.ubuntu.com/ubuntu hardy main restricted universe multiverse
deb http://it.archive.ubuntu.com/ubuntu hardy-proposed main restricted universe multiverse
## MAJOR BUG FIX UPDATES produced after the final release
deb http://it.archive.ubuntu.com/ubuntu hardy-updates main restricted universe multiverse
## UBUNTU SECURITY UPDATES
deb http://security.ubuntu.com/ubuntu hardy-security main restricted universe multiverse
## BACKPORTS REPOSITORY (Unsupported. May contain illegal packages. Use at own risk.)
deb http://it.archive.ubuntu.com/ubuntu hardy-backports main restricted universe multiverse
## CANONICAL COMMERCIAL REPOSITORY (Hosted on Canonical servers, not Ubuntu
## servers. RealPlayer10, Opera, DesktopSecure and more to come.)
deb http://archive.canonical.com/ubuntu hardy partner
# Cafuegoâ??s edgy Stuff: Broadcom firmware, google-earth, beagle (GPG key: 969F3F57)A?¦
deb http://au.ubuntu.cafuego.net hardy-cafuego all google inkscape internode rtorrent secondlife
#wine
deb http://wine.budgetdedicated.com/apt hardy main …Read the rest »