Repositories
Repositories is where your Ubuntu will search for available packages to be install. The list of repositories is saved in /etc/apt/sources.list
This is my sources.list file
You can edit your sources.list file by invoking this command:
After editing your sources.list file, you should update the packages cache by invoking this command:
Done! Now you have more applications to play with :)
This is my sources.list file
#deb cdrom:[Ubuntu 5.04 _Hoary Hedgehog_ - Release i386 (20050407)]/ hoary main restricted
deb http://id.archive.ubuntu.com/ubuntu hoary main restricted
deb-src http://id.archive.ubuntu.com/ubuntu hoary main restricted
## Major bug fix updates produced after the final release of the
## distribution.
deb http://id.archive.ubuntu.com/ubuntu hoary-updates main restricted
deb-src http://id.archive.ubuntu.com/ubuntu hoary-updates main restricted
## Uncomment the following two lines to add software from the 'universe'
## repository.
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
deb http://id.archive.ubuntu.com/ubuntu hoary universe
deb-src http://id.archive.ubuntu.com/ubuntu hoary universe
deb http://security.ubuntu.com/ubuntu hoary-security main restricted
deb-src http://security.ubuntu.com/ubuntu hoary-security main restricted
deb http://security.ubuntu.com/ubuntu hoary-security universe
deb-src http://security.ubuntu.com/ubuntu hoary-security universe
deb http://id.archive.ubuntu.com/ubuntu hoary multiverse
deb-src http://id.archive.ubuntu.com/ubuntu hoary multiverse
## Backports
#deb http://archive.ubuntu.com/ubuntu hoary-backports main restricted universe multiverse
## Wine Official Package Mirror
deb http://wine.sourceforge.net/apt/ binary/
deb-src http://wine.sourceforge.net/apt/ source/
You can edit your sources.list file by invoking this command:
sudo gedit /etc/apt/sources.list
After editing your sources.list file, you should update the packages cache by invoking this command:
sudo apt-get update
Done! Now you have more applications to play with :)

