Friday, January 23, 2009

Install Linux Program

The installation procedure for software that comes in tar.gz and tar.bz2 packages isn't always the same, but usually it's like this:

  • tar xvzf package.tar.gz (or tar xvjf package.tar.bz2)

  • cd package

  • ./configure

  • make
  • javascript:void(0)
  • make install


If you're lucky, by issuing these simple commands you unpack, configure, compile, and install the software package and you don't even have to know what you're doing. However, it's healthy to take a closer look at the installation procedure and see what these steps mean.

Followers