How to install tar gz file or tar bz2 file
The Tarball Installation First open terminal Method 1. Script Manual Install(Popular program:java firefox) tar -zvxf yourfile.tar.gz or tar -jvxf yorfile.tar.bz2 sudo cp -rf yourfile/ /usr/local/ sudo echo PATH=/usr/local/yourfile:$PATH>>~/.bashrc bash exit Second Method The automatic configure (Popular program:wine) tar -zvxf yourfile.tar.gz or tar -jvxf yorfile.tar.bz2 sudo -s cd yourfile ./configure make make install