Many newbies find it difficult to compiling programs under Linux (command mentioned below should also work with FreeBSD or any other UNIX like system). The fact that Linux is open source OS, so most of the programs are also open sources. Improvements and security, bug patches needs to us compile not just Kernel but softwares/programs. Please note that you can download program with wget and extract the file with tar command.
If file extensions is .gz then use tar command as follows to extract tar ball:
$ tar -zxvf file.tar.gz
If file extensions is .bz2 then use tar command as follows to extract tar ball:
$ tar -jxvf file.tar.bz2
Three common steps to compiling program under Linux:
Step # 1: Configure (read as prepare) the program for compile on your system/architecture.
Generally configure command is used:
$ ./configure
Step # 2: Compiling the program
Use make command to compiling program:
$ make
Step # 3: Install the program
First become a root user:
$ su -
Password:YOUR-PASSWORD
Next install the software with following command:
# make install
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop












{ 6 comments… read them below or add one }
If file extensions is .bz2 then use tar command as follows to extract tar ball:
$ tar -jxvf file.tar.gz
I am guessing it should be .bz2 insteat of .tar.gz
thanks for the heads up!
ok so im a newb and i get all these in every thing i d l but no one tells you where to open file to is it xmacs emacks tmacks rpm ark yast come on don’t be so veg i need some real help all i have is a tar. file i open it yes i see a read me file and a config make and source files but what do i open them in to my guess is emacs but no explanation to what ive playd w/ it for hours i tryd to open w/ icecream rpm yast emacs ark tem shell tried bash ash o god some one put it in lamen terms wright a book and u will make millions to much i find on the net linux/unix/os users try ro make it sound to hard for an average user to do
hi
i geting permission deny error while compiling module programme, and also enter through super user sometime it will disply module librery undefined pls help me
How to add a user written device driver to the kernel
nIs it possible to compile a program in one version of linux and use it in any other version?