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
🐧 Get the latest tutorials on Linux, Open Source & DevOps via:
- RSS feed or Weekly email newsletter
- Share on Twitter • Facebook • 6 comments... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
nIs it possible to compile a program in one version of linux and use it in any other version?
How to add a user written device driver to the kernel
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
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
thanks for the heads up!
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