Difference between revisions of "Sources"

(Created page with "This section explain how to adjust the repositories list. ===Ubuntu desktop=== Edit the sources.list <syntaxhighlight lang="bash"> sudo vim /etc/apt/sources.list </syntaxhigh...")
 
Line 7: Line 7:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
* Disable source repositories
+
====Disable source repositories====
 
You don't need to use the sources for a daily use. Just remove or comment all '''deb-src''' lines using a #
 
You don't need to use the sources for a daily use. Just remove or comment all '''deb-src''' lines using a #
 
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
Line 13: Line 13:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
* Required repositories
+
====Required repositories====
 
You need to enable:
 
You need to enable:
** Ubuntu official repositories  
+
* Ubuntu official repositories  
** Backport - community repositories
+
* Backport - community repositories
** Ubuntu partners - commercial packages
+
* Ubuntu partners - commercial packages
** 3rd parties - from non-related providers  
+
* 3rd parties - from non-related providers  
  
 
Your file should look like that:
 
Your file should look like that:

Revision as of 20:24, 16 November 2013

This section explain how to adjust the repositories list.

Ubuntu desktop

Edit the sources.list

sudo vim /etc/apt/sources.list

Disable source repositories

You don't need to use the sources for a daily use. Just remove or comment all deb-src lines using a #

#deb-src http://se.archive.ubuntu.com/ubuntu/ saucy-updates main restricted

Required repositories

You need to enable:

  • Ubuntu official repositories
  • Backport - community repositories
  • Ubuntu partners - commercial packages
  • 3rd parties - from non-related providers

Your file should look like that:

##
## Ubuntu repositories
## Distro: 13.10
##

## Ubuntu official repos
deb http://se.archive.ubuntu.com/ubuntu/ saucy main restricted universe multiverse
deb http://se.archive.ubuntu.com/ubuntu/ saucy-updates main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu saucy-security main restricted universe multiverse

## Backports
deb http://se.archive.ubuntu.com/ubuntu/ saucy-backports main restricted universe multiverse

## Ubuntu partners
deb http://archive.canonical.com/ubuntu saucy partner

## 3rd parties libraries
deb http://extras.ubuntu.com/ubuntu saucy main


Debian

To be adjusted