|
#!/bin/sh |
|
|
|
echo "Official Debian mirrors by country code:" |
|
echo "au: Australia (ftp.au.debian.org/debian/)" |
|
echo "at: Austria (ftp.at.debian.org/debian/)" |
|
echo "by: Belarus (ftp.by.debian.org/debian/)" |
|
echo "be: Belgium (ftp.be.debian.org/debian/)" |
|
echo "br: Brazil (ftp.br.debian.org/debian/)" |
|
echo "bg: Bulgaria (ftp.bg.debian.org/debian/)" |
|
echo "ca: Canada (ftp.ca.debian.org/debian/)" |
|
echo "cl: Chile (ftp.cl.debian.org/debian/)" |
|
echo "cn: China (ftp.cn.debian.org/debian/)" |
|
echo "hr: Croatia (ftp.hr.debian.org/debian/)" |
|
echo "cz: Czech Republic (ftp.cz.debian.org/debian/)" |
|
echo "dk: Denmark (ftp.dk.debian.org/debian/)" |
|
echo "sv: El Salvador (ftp.sv.debian.org/debian/)" |
|
echo "ee: Estonia (ftp.ee.debian.org/debian/)" |
|
echo "fi: Finland (ftp.fi.debian.org/debian/)" |
|
echo "fr: France (ftp.fr.debian.org/debian/)" |
|
echo "de: Germany (ftp.de.debian.org/debian/)" |
|
echo "gr: Greece (ftp.gr.debian.org/debian/)" |
|
echo "hk: Hong Kong (ftp.hk.debian.org/debian/)" |
|
echo "hu: Hungary (ftp.hu.debian.org/debian/)" |
|
echo "is: Iceland (ftp.is.debian.org/debian/)" |
|
echo "ir: Iran (ftp.ir.debian.org/debian/)" |
|
echo "ie: Ireland (ftp.ie.debian.org/debian/)" |
|
echo "it: Italy (ftp.it.debian.org/debian/)" |
|
echo "jp: Japan (ftp.jp.debian.org/debian/)" |
|
echo "kr: Korea (ftp.kr.debian.org/debian/)" |
|
echo "lt: Lithuania (ftp.lt.debian.org/debian/)" |
|
echo "mx: Mexico (ftp.mx.debian.org/debian/)" |
|
echo "nl: Netherlands (ftp.nl.debian.org/debian/)" |
|
echo "nc: New Caledonia (ftp.nc.debian.org/debian/)" |
|
echo "nz: New Zealand (ftp.nz.debian.org/debian/)" |
|
echo "no: Norway (ftp.no.debian.org/debian/)" |
|
echo "pl: Poland (ftp.pl.debian.org/debian/)" |
|
echo "pt: Portugal (ftp.pt.debian.org/debian/)" |
|
echo "ro: Romania (ftp.ro.debian.org/debian/)" |
|
echo "ru: Russia (ftp.ru.debian.org/debian/)" |
|
echo "sk: Slovakia (ftp.sk.debian.org/debian/)" |
|
echo "si: Slovenia (ftp.si.debian.org/debian/)" |
|
echo "es: Spain (ftp.es.debian.org/debian/)" |
|
echo "se: Sweden (ftp.se.debian.org/debian/)" |
|
echo "ch: Switzerland (ftp.ch.debian.org/debian/)" |
|
echo "tw: Taiwan (ftp.tw.debian.org/debian/)" |
|
echo "th: Thailand (ftp.th.debian.org/debian/)" |
|
echo "tr: Turkey (ftp.tr.debian.org/debian/)" |
|
echo "ua: Ukraine (ftp.ua.debian.org/debian/)" |
|
echo "uk: United Kingdom (ftp.uk.debian.org/debian/)" |
|
echo "us: United States (ftp.us.debian.org/debian/)" |
|
read -p "Which mirror to use [default=us] ? " mirror |
|
mirror=${mirror:-us} |
|
|
|
echo "Create preferences files:" |
|
cd "/etc/apt/preferences.d" |
|
|
|
echo "- security.pref" |
|
echo "Package: *" > security.pref |
|
echo "Pin: release l=Debian-Security" >> security.pref |
|
echo "Pin-Priority: 1001" >> security.pref |
|
|
|
echo "- stable.pref" |
|
echo "Package: *" > stable.pref |
|
echo "Pin: release l=stable" >> stable.pref |
|
echo "Pin-Priority: 900" >> stable.pref |
|
|
|
echo "- testing.pref" |
|
echo "Package: *" > testing.pref |
|
echo "Pin: release l=testing" >> testing.pref |
|
echo "Pin-Priority: -10" >> testing.pref |
|
|
|
echo "- unstable.pref" |
|
echo "Package: *" > unstable.pref |
|
echo "Pin: release l=unstable" >> unstable.pref |
|
echo "Pin-Priority: -10" >> unstable.pref |
|
|
|
echo "- oldstable.pref" |
|
echo "Package: *" > oldstable.pref |
|
echo "Pin: release l=oldstable" >> oldstable.pref |
|
echo "Pin-Priority: -10" >> oldstable.pref |
|
|
|
echo "- experimental.pref" |
|
echo "Package: *" > experimental.pref |
|
echo "Pin: release l=experimental" >> experimental.pref |
|
echo "Pin-Priority: -10" >> experimental.pref |
|
|
|
echo "Create sources files" |
|
cd "/etc/apt/sources.list.d" |
|
|
|
echo "- security.list" |
|
echo "deb http://security.debian.org/ stable/updates main" > security.list |
|
echo "deb http://security.debian.org/ testing/updates main" >> security.list |
|
|
|
echo "- stable.list" |
|
echo "deb http://ftp.$mirror.debian.org/debian/ stable main" > stable.list |
|
echo "deb-src http://ftp.$mirror.debian.org/debian/ stable main" >> stable.list |
|
|
|
echo "- testing.list" |
|
echo "deb http://ftp.$mirror.debian.org/debian/ testing main" > testing.list |
|
echo "deb-src http://ftp.$mirror.debian.org/debian/ testing main" >> testing.list |
|
|
|
echo "- unstable.list" |
|
echo "deb http://ftp.$mirror.debian.org/debian/ unstable main" > unstable.list |
|
echo "deb-src http://ftp.$mirror.debian.org/debian/ unstable main" >> unstable.list |
|
|
|
echo "- oldstable.list" |
|
echo "deb http://ftp.$mirror.debian.org/debian/ oldstable main" > oldstable.list |
|
echo "deb-src http://ftp.$mirror.debian.org/debian/ oldstable main" >> oldstable.list |
|
|
|
echo "- experimental.list" |
|
echo "deb http://ftp.$mirror.debian.org/debian/ experimental main" > experimental.list |
|
echo "deb-src http://ftp.$mirror.debian.org/debian/ experimental main" >> experimental.list |
|
|
|
echo "update apt cache" |
|
apt-get clean |
|
apt-get update |