Skip to content

Instantly share code, notes, and snippets.

@e7d
Last active October 7, 2015 09:10
Show Gist options
  • Save e7d/9e402ec78bc17e2a3eda to your computer and use it in GitHub Desktop.
Save e7d/9e402ec78bc17e2a3eda to your computer and use it in GitHub Desktop.
Setup an APT environment for all repositories

Automated install

Disclaimer

Read the install script before using it.
You may want to understand what the script is doing before executing it.
I will not be responsible for any damage caused to your server.

Installation script

cd ~
wget --no-check-certificate -O setup-all-apt-repositories.sh https://gist.githubusercontent.com/e7d/9e402ec78bc17e2a3eda/raw/setup-all-apt-repositories.sh \
  && chmod +x setup-all-apt-repositories.sh \
  && ./setup-all-apt-repositories.sh

#!/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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment