Sunday, August 16, 2009

Installing a .tar.gz file

Needed to install IPMSG in my home laptop Ubuntu, and realized that my previous blog wasn't really that descriptive of the steps.

Here are the details after installing the dependencies and the ipmsg tar.gz file.
1. Open a terminal window (Applications - Accessories - Terminal)
2. Go to the folder where the tar.gz is saved (using the cd, dir commands)
3. Then type in the command line: tar zxf {name of tar.gz file} and hit Enter
4. This will create a subfolder named after the tar file. cd to this subfolder.
5. Inside the subfolder, type these series of commands:
./configure
make
sudo make install

If all goes well, you should be able to see your installed application after a restart of the system.

No comments:

Post a Comment