You are here:  HowtosLinux package installation >

Contact

skype me
  email

Feeds

Neverslair RSS Feed
Neverslair RDF Feed
Neverslair ATOM03 Feed
Neverslair ATOM1 Feed

Sitemap

html sitemap
Sitemap XML
Login to Neverslair


Valid XHTML 1.0 Transitional


[Valid RSS]


powered by typo3



Linux package installation

Linux package installations

1. rpm ([http://www.redhat.com|redhat] package manager)

to install a package the first time:

rpm -ivh packetname.rpm

to upgrade a package

rpm -Uvh packetname.rpm

2. dpkg ([http://www.debian.org|debian] package manager)

dpkg -i packetname.deb

3. .tar, .tar.gz, .bz2 (sourcecode installations)

this kind of installations require a few steps
first step, unpack the sourcecode:

tar zxvf filename.tar.gz[/code
tar xvf filename.tar
tar xvfj filename.tar.bz2
bunzip2 filename.bz2

second step, look into the the unpacked dir, and open the readme or the installation howto.

third step, follow the instructions provided, install all missing or outdated packages, and then run the installation process.

a tip:

./configure --help gives informations about possible configuration options of the source, in case the sourcecode was maintained with automake