Tips Linux Explorers | ![]() |
All Things Linux Forum | ![]() |
Great Linux Links | ![]() |
LinuxClues.com | ![]() |
Hometown | ![]() |
CODE |
$ whereis gcc |
CODE |
$ tar -xvzf gkrellm.tar.gz $ cd gkrellm $ ./configure $ make $ su < password > # make install |
CODE |
# tar -xvzf gkrellm-2.0.tar.gz ( Will unzip the package to a new directory gkrellm-2.0 ) Note: for .tar.bz2 packages we do "tar -xvjf", for .tgz packages "tar -xvfz" # ls ( Check the name of the new directory, it might be gkrellm2 ) # mv gkrellm-2.0 /usr/src ( Will move it to your sources directory ) # cd /usr/src/gkrellm-2.0 ( Will put you right inside the directory ) # ls ( Will list all the files in the directory ) |
CODE |
$ ./configure |
CODE |
$ make ( Might take some time ) $ su < password > # make install ( bingo ! ) Ctrl+d ( back to normal user ) $ cd ( back to home directory ) |
Tips Linux Explorers | ![]() |
All Things Linux Forum | ![]() |
Great Linux Links | ![]() |
LinuxClues.com | ![]() |
Hometown | ![]() |