This is for newbies in Linux who are trying to learn Linux and in the meantime require to install several apps most of them are available in the repository ( Ubuntu,Suse,Fedora etc .) , installing from repository is very easy but if you download a tarball or a compressed archive of the software package source code then you can easily install it using these commands at your terminal ( command interpreter )
Assuming ,
- You have downloaded a file named mytarball.gz(replace with whatever is your file name)
- you are in the same directory as where the file resides
tar -zxvf mytarball.tar.gz
./configure
make
sudo make install
assuming that you are in the directory where you downloaded the tar.gz file, for more details on this and how it works, you can read a well written article by Joshua Price here, I dont think it would be worthwhile to repeat the same steps and explanation here .
Last 5 posts in Linux
- Ubuntu Tweak 0.5.6: new feature desktop recovery - September 1st, 2010
- 5 great extensions for Chrome to take screenshot of web pages. - August 26th, 2010
- Shutter in Ubuntu 10.04/9.10: A advanced screen shot program - August 22nd, 2010
- Not So Simple Backup (NSS Backup) suite - Backup solution for common desktop use - August 22nd, 2010
- Techstroke Tablet Guide: Touch Screen and Tablet computers available in market - August 14th, 2010

{ 1 trackback }