EDIT: UPDATE DEL 27 MAGGIO 2009: Ecco la lista aggiornata al 27 maggio 2009, con correzioni ed aggiunte.
Ecco la lista per i repository apt che uso da qualche mese, e che non ha creato alcun problema.
Attenzione ad usare il cervello e leggere quando si aggiorna o installa un software, un problema può essere dietro l’angolo.
Ricordatevi di aggiungere le chiavi gpg dei repository, operazione purtroppo un pò noiosa.
———
edit: Questo metodo, preso sempre da sourceslist, non fa altro che leggere il file /etc/apt/sources.list e importare le chiavi relative a tutti i repository ivi presenti. Basta immetere da konsole il codice seguente:
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 [ -z “$(echo “$keylist”|grep “$key”)” ]; then keylist=”$keylist $key”; gpg –keyserver subkeys.pgp.net –recv $key && gpg –export –armor $key | sudo apt-key add -; fi; done;
——–
I repository contrassegnati da “********” sono presi da 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)â?¦
deb http://au.ubuntu.cafuego.net hardy-cafuego all google inkscape internode rtorrent secondlife
#wine
deb http://wine.budgetdedicated.com/apt hardy main …Leggi il resto »