DeskTux

Linux on Desktops

User Tools

Site Tools


misc:sources.list

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
misc:sources.list [2015-05-17 09:46] – [sources.list] Adding Iceweasel jensmisc:sources.list [2023-06-13 08:33] (current) jens
Line 1: Line 1:
-====== Sources.list ======+====== sources.list ====== 
 +For people using Debian---especially new users---it can be confusing to have the proper and correct entries in the ''/etc/apt/sources.list''.
  
-This is my ''/etc/apt/sources.list'' which grew during the past few yearsMaybe it'll be helpful for you.+You should---of course---use a [[http://www.debian.org/mirror/list|Debian mirror]] that is not too far away from you. The examples below contain the generic mirrors where you have to replace "XX" by your language/country codeFurthermore, replace CODENAME by the version you are running, you can find all available codenames on the [[https://wiki.debian.org/DebianReleases|Debian website]].
  
-You should---of course---use a [[http://www.debian.org/mirror/list|Debian mirror]] that is not too far away from youThe examples below contain the generic mirrors where you have to replace "XX" by your language code.+I also used to have the entries for [[http://deb-multimedia.org/|Marillat]] packages by default but decided to remove themThey become less and less relevant (for me) and change too much in the base system which makes it difficult to impossible to remove them again. If you still wish to use those, feel free to use them of course. For instructions see the [[http://deb-multimedia.org/|Deb Multimedia]] website.
  
-If you use a notebookmake sure to also read [[misc:Power_Management|these instructions]] and enable TLP in your sources.list!+Because users usually do not do development, I left out the ''deb-src'' entries. If you need the sourcesjust duplicate all entries and replace the starting ''deb'' with ''deb-src'' in the duplicates.
  
-===== Jessie ===== +===== Bookworm and newer =====
- +
-==== sources.list ====+
 <file bash sources.list> <file bash sources.list>
 +### /etc/apt/sources.list
 +# Make sure to replace XX with your local mirror language/country code
 +# Make sure to replace CODENAME with the release codename you are running
 +
 ### Main Sources ### Main Sources
-deb http://ftp.XX.debian.org/debian/ jessie main contrib non-free +deb http://ftp.XX.debian.org/debian/ CODENAME main contrib non-free non-free-firmware
-deb-src http://ftp.XX.debian.org/debian/ jessie main contrib non-free+
  
 ### Security Updates ### Security Updates
-deb http://security.debian.org/ jessie/updates main contrib non-free +deb http://security.debian.org/debian-security CODENAME-security main contrib non-free non-free-firmware
-deb-src http://security.debian.org/ jessie/updates main contrib non-free+
  
 ### Software Updates ### Software Updates
-deb http://ftp.XX.debian.org/debian/ jessie-updates main contrib non-free +deb http://ftp.XX.debian.org/debian/ CODENAME-updates main contrib non-free non-free-firmware 
-deb-src http://ftp.XX.debian.org/debian/ jessie-updates main contrib non-free +deb http://ftp.XX.debian.org/debian/ CODENAME-backports main contrib non-free non-free-firmware 
-deb http://ftp.XX.debian.org/debian/ jessie-proposed-updates main contrib non-free +deb http://ftp.XX.debian.org/debian/ CODENAME-proposed-updates main contrib non-free non-free-firmware 
-deb-src http://ftp.XX.debian.org/debian/ jessie-proposed-updates main contrib non-free +</file>
-deb http://ftp.XX.debian.org/debian/ jessie-backports main contrib non-free+
  
-### Unofficial Packages +===== Bullseye and older ===== 
-deb     http://mozilla.debian.net/              jessie-backports        iceweasel-release +<file bash sources.list> 
-#deb http://www.deb-multimedia.org jessie main non-free Marillat+### /etc/apt/sources.list 
 +Make sure to replace XX with your local mirror language/country code 
 +Make sure to replace CODENAME with the release codename you are running
  
-### Importing GPG keys for APT +### Main Sources 
-# Iceweasel apt-get install pkg-mozilla-archive-keyring +deb http://ftp.XX.debian.org/debian/ CODENAME main contrib non-free
-# Marillat apt-get install deb-multimedia-keyring +
-</file>+
  
-==== For servers ==== +### Security Updates 
-Although my page is aimed at desktop usage, please don't use the above sources.list on a server! There it should look something like this.+deb http://security.debian.org/debian-security CODENAME-security main contrib non-free
  
-If you are using fast-moving packages like ClamAV you should also enable the 'wheezy-updates' repositoryAnd for firmware files (sometimes necessary in servers) you should add the "non-free" section as well.+### Software Updates 
 +deb http://ftp.XX.debian.org/debian/ CODENAME-updates main contrib non-free 
 +deb http://ftp.XX.debian.org/debian/ CODENAME-backports main contrib non-free 
 +deb http://ftp.XX.debian.org/debian/ CODENAME-proposed-updates main contrib non-free 
 +</file>
  
-<code bash> +===== Servers ===== 
-Main Sources +Although my page is aimed at desktop usage, please don't use the above sources.list on a server. There it should look something like this. 
-deb http://ftp.XX.debian.org/debian/ jessie main+ 
 +==== Bookworm and newer ==== 
 +<file bash sources.list
 +### /etc/apt/sources.list 
 +# Make sure to replace XX with your local mirror language/country code 
 +# Make sure to replace CODENAME with the release codename you are running
  
-# (Security) Updates 
-deb http://security.debian.org/ jessie/updates main 
-#deb http://ftp.XX.debian.org/debian/ jessie-updates main 
-</code> 
-===== Wheezy ===== 
-Because Jessie has been released I no longer recommend installing Wheezy as your Desktop OS. 
-==== sources.list ==== 
-<code> 
 ### Main Sources ### Main Sources
-deb http://ftp.XX.debian.org/debian/ wheezy main contrib non-free +deb http://ftp.XX.debian.org/debian/ CODENAME main non-free-firmware
-deb-src http://ftp.XX.debian.org/debian/ wheezy main contrib non-free+
  
 ### Security Updates ### Security Updates
-deb http://security.debian.org/ wheezy/updates main contrib non-free +deb http://security.debian.org/debian-security CODENAME-security main non-free-firmware
-deb-src http://security.debian.org/ wheezy/updates main contrib non-free+
  
 ### Software Updates ### Software Updates
-deb http://ftp.XX.debian.org/debian/ wheezy-updates main contrib non-free +deb http://ftp.XX.debian.org/debian/ CODENAME-updates main non-free-firmware 
-deb-src http://ftp.XX.debian.org/debian/ wheezy-updates main contrib non-free +</file>
-deb http://ftp.XX.debian.org/debian/ wheezy-proposed-updates main contrib non-free +
-deb-src http://ftp.XX.debian.org/debian/ wheezy-proposed-updates main contrib non-free +
-deb http://ftp.XX.debian.org/debian/ wheezy-backports main contrib non-free+
  
-### Unofficial Packages +==== Bullseye and older ==== 
-deb http://mozilla.debian.net/ wheezy-backports iceweasel-release # Firefox +Because many servers need the firmware for hardware to function properly, I added the ''non-free'' by default hereIf you are running Debian virtualized, the ''non-free'' can be remowed.
-deb http://www.deb-multimedia.org wheezy main non-free # Marillat+
  
-### Importing GPG keys for APT +<file bash sources.list> 
-# Iceweasel apt-get install pkg-mozilla-archive-keyring +### /etc/apt/sources.list 
-Marillat apt-get install deb-multimedia-keyring +Make sure to replace XX with your local mirror language/country code 
-</code>+# Make sure to replace CODENAME with the release codename you are running
  
-==== For servers ==== +### Main Sources 
-<code bash> +deb http://ftp.XX.debian.org/debian/ CODENAME main non-free
-# Main Sources +
-deb http://ftp.XX.debian.org/debian/ wheezy main+
  
-(SecurityUpdates +### Security Updates 
-deb http://security.debian.org/ wheezy/updates main +deb http://security.debian.org/debian-security CODENAME-security main non-free
-#deb http://ftp.XX.debian.org/debian/ wheezy-updates main +
-#deb http://ftp.XX.debian.org/debian/ wheezy-lts main +
-</code>+
  
-===== Squeeze ===== +### Software Updates 
-<WRAP tip> +deb http://ftp.XX.debian.org/debian/ CODENAME-updates main non-free 
-Although the official support for Squeeze has ended, you can still get security support for Squeeze by adding the ''squeeze-lts'' repositoryHowever, this works only for the i386 and amd64 architectures and will be maintained until february 2016+</file>
-</WRAP>+
  
-Because of the by now very old software available in Squeeze I do no longer recommend to use Squeeze on a desktop. +===== LTS ===== 
-==== For servers ==== +Sometimes, especially on servers, it can happen that you need to run an older version of Debian to ensure stable production. In those cases you can use the LTS repositoriesLTS is available only for the i386, amd64 and several arm architectures.
-If you still have servers running Squeeze you can use this sources.list.+
  
-<code bash> +For current available LTS versions, please check the [[https://wiki.debian.org/DebianReleases#Production_Releases|Debian Releases]], a fitting ''sources.list'' should look like this:
-# Main Sources +
-deb http://ftp.XX.debian.org/debian/ squeeze main+
  
-# (Security) Updates +<file bash sources.list> 
-deb http://security.debian.org/ squeeze/updates main +### /etc/apt/sources.list 
-#deb http://ftp.XX.debian.org/debian/ squeeze-updates main +# For LTS Releases 
-deb http://ftp.XX.debian.org/debian/ squeeze-lts main +# Make sure to replace CODENAME with the release codename you are running
-</code>+
  
-===== Lenny ===== +### Main Sources 
-Currently you shouldn't use Lenny anymore for there are no more security updatesThe following sources.list can be used anyway, it contains all security updates that were available for Lenny.+deb http://deb.debian.org/debian/ CODENAME main non-free
  
-<code bash> +### Security Updates 
-Main Sources +deb http://security.debian.org/ CODENAME/updates main non-free 
-deb http://ftp.XX.debian.org/debian-archive/debian lenny main contrib non-free +</file>
-</code> +
- +
-===== Etch ===== +
-Currently you shouldn't use Etch anymore for there are no more security updates. The following sources.list can be used anyway, it contains all security updates that were available for Etch. +
- +
-<code bash> +
-# Main Sources +
-deb http://ftp.XX.debian.org/debian-archive/debian etch main contrib non-free +
-</code>+
misc/sources.list.1431848780.txt.gz · Last modified: 2016-02-16 14:32 (external edit)