View Single Post

  #2 (permalink)  
Old 01-08-2006, 01:02 AM
rockdalinux's Avatar
rockdalinux rockdalinux is offline
Contributors
User
 
Join Date: May 2005
Location: Bangalore
My distro: RHEL, HP-UX, Solaris, FreeBSD, Ubuntu
Posts: 581
Rep Power: 7
rockdalinux is a jewel in the rough rockdalinux is a jewel in the rough rockdalinux is a jewel in the rough rockdalinux is a jewel in the rough
Default

First unpack the software from its distribution format (typically a tarball compressed with compress, gzip, or bzip2 program)
If extension is .tar.gz
Code:
tar -zxvf file.tar.gz
If extension is .tar.bz2
Code:
tar -jxvf file.tar.bz2
Then goto directory where files are extracted and locate the documentation (perhaps an INSTALL or README file, or some files in a doc/ subdirectory) and read up on how to install the software.

If the software was distributed in source format, compile it. For example
Code:
./configure
make
make install
If you have more question feel free to reply
__________________
Rocky Jr.
You may have my body & soul, but you will never touch my pride!

If you have knowledge, let others light their candles at it.

Certified to work on HP-UX / Sun Solaris / RedHat
Reply With Quote