There are thousands of programs available to install on Ubuntu. These programs are stored in software archives (repositories) and are available for installation over the Internet. This makes it very easy to install new programs. It is also very secure, because each program you install is thoroughly tested and built specifically for Ubuntu.
(...)
Read the rest of How to enable the universe and multiverse repositories in Ubuntu 8.04 (Hardy) (451 words)
© admin for Ubuntu Geek, 2008. |
Permalink |
5 comments |
Add to
del.icio.us
digg
Who's linking ?
Technorati
BlogPulse
Google
Want more on these topics ? Browse the archive of posts filed under Package Mgmt.
Ubuntu: Ubuntu Geek - Ubuntu Tutorials,Howto's,Tips and Tricks
This tutorial is for those who use Ubuntu, Debian or a derivative of Debian Linux and have downloaded a .deb package that they want to install. Typically you can use synaptic, apt-get or aptitude. However, if the package is not available via the repositories you may need to download and install them yourself.
Tags: deb packagedeb packagesdebian linuxThis tutorial is for those who use Ubuntu, Debian or a derivative of Debian Linux and have downloaded a .deb package that they want to install. Typically you can use synaptic, apt-get or aptitude. However, if the package is not available via the repositories you may need to download and install them yourself.
Tags: deb package, deb packages, debian linuxIf You are running Debian stable, because you prefer the stable Debian tree. It runs great, there is just one problem: the software is a little bit outdated compared to other distributions. That is where backports come in.
Backports are recompiled packages from testing (mostly) and unstable (in a few cases only, e.g. security updates), so they will run without new libraries (wherever it is possible) on a stable Debian distribution. I recommend you to pick out single backports which fits your needs, and not to use all backports available here.
If you want to install Backport debian packages follow this simple procedure
First you need to add this line to your /etc/apt/sources.list file
deb http://www.backports.org/debian/ sarge-backports main contrib non-free
Add the following lines to your /etc/apt/preferences That will deactivate all packages from backports.org
Package: *
Pin: release a=sarge-backports
Pin-Priority: 200
If you want to activate a package (e.g. nagios2), add these lines to /etc/apt/preferences
Package: nagios2
Pin: release a=sarge-backports
Pin-Priority: 999
Then you need to update the source list using the following command
#apt-get update
Install the package using the following command
#apt-get install nagios2
as usual.
Another way is to skip the second entry in /etc/apt/preferences and to use
#apt-get -t sarge-backports install nagios2
which is easier when the package requires additional backports.
If you want to install any package you need to replace the nagios2 package name with the name of the package you want to install.
Tags: backports packages debian, install backportpackages in debian, Package Mgmtbackports packages debian, install backportpackages in debian, Package Mgmt
Debian: Debian Admin Step By Step Tutorials and articles with screenshots