This is personal note for myself. All of my servers I bought is self-managed and most of them is Debian 6 (squezee). I need to add additional repositories beside the default ones.
Additional Debian 6 repositories added:
Full /etc/apt/sources.list
deb http://ftp.us.debian.org/debian squeeze main deb http://security.debian.org/ squeeze/updates main # squeeze-updates, previously known as 'volatile' deb http://ftp.us.debian.org/debian/ squeeze-updates main deb-src http://ftp.us.debian.org/debian/ squeeze-updates main deb http://packages.dotdeb.org stable all deb-src http://packages.dotdeb.org stable all #debian multimedia deb http://ftp.uni-kl.de/debian-multimedia/ stable main deb-src http://ftp.uni-kl.de/debian-multimedia/ stable main #debian backports deb http://backports.debian.org/debian-backports squeeze-backports main
Additional steps for dotdeb repository: before doing “apt-get update“, must download and install dotdeb key first
1 2 | wget http://www.dotdeb.org/dotdeb.gpg cat dotdeb.gpg | apt-key add - |
Additional steps for debian-multimedia repository: must install debian-multimedia-keyring after apt-get update
1 | apt-get install debian-multimedia-keyring |