make is in the make package, part of the "Development Tools" group which you should install before attempting to build anything.

Answer from Ignacio Vazquez-Abrams on Stack Overflow
🌐
Linux Questions
linuxquestions.org › questions › linux-software-2 › make-command-not-found-4175653702
make command not found - Linux - Software
I'm currently running Devuan in an i3 4G ram on my machine and trying to install from source, because Devuan does not offer dvb-utils. The app
Discussions

Make command not found
Hi everyone! New linux user here, The problem- …my default network card did not work and i didn’t have ethernet. … So! I bought a usb wireless driver called 802.11n, It comes with a CD that contains the driver so extracted the files and read instructions. More on forum.manjaro.org
🌐 forum.manjaro.org
1
0
October 8, 2022
kali linux - make command not working - Unix & Linux Stack Exchange
/rtlwifi_new# make && make install make -C /lib/modules/4.12.0-kali2-amd64/build M=/root/rtlwifi_new modules make[1]: *** /lib/modules/4.12.0-kali2-amd64/build: No such file or directory. ... More on unix.stackexchange.com
🌐 unix.stackexchange.com
docker-compose command not found
Doesn't make sense. I'd recommend just following the official installation instructions (basically copy the script down and put it in one of your bin's on your path). That's how I've always used it and it works fine in Crostini More on reddit.com
🌐 r/Crostini
10
1
July 12, 2019
ifup & ifdown are not working in RedHat linux
networking - RHEL 8 Deprecated Network Scripts - Unix & Linux Stack Exchange Looks like you might have to install the network-scripts rpm. More on reddit.com
🌐 r/linuxquestions
12
3
September 15, 2023
🌐
Power Sysadmin Blog
poweradm.com › home › make command not found on linux
Make Command Not Found on Linux - Power Sysadmin Blog
March 23, 2023 - You can install it by typing: sudo apt install make · First of all, make sure that the make command is installed on your Linux distribution and that the path to its directory is included in the PATH environment variable.
🌐
Delft Stack
delftstack.com › home › howto › linux › bash make command not found error
How to Solve Make Command Not Found Error in Linux Bash | Delft Stack
March 14, 2025 - Can I install make using a different package manager? Yes, the installation command may vary based on your Linux distribution. For instance, use apt for Debian-based systems and yum for CentOS/RHEL.
🌐
Cyfuture Cloud
cyfuture.cloud › kb › general › bash-make-command-not-found
Bash Make Command Not Found
To resolve the "-bash: 1st: if ... manager: - For Ubuntu/Debian: sudo apt-get install make · - For CentOS/RHEL: sudo yum install make ·...
🌐
The Geek Diary
thegeekdiary.com › make-command-not-found
make: command not found – The Geek Diary
make: command not found · you may try installing the below package as per your choice of distribution: 1. Call the first target specified in the Makefile (usually named “all”): # make · 2. Call a specific target: # make target · 3. Call a specific target, executing 4 jobs at a time in parallel: # make -j4 target ·
Find elsewhere
🌐
SharadChhetri
sharadchhetri.com › make-command-not-found-in-linux-centos-red-hat-ubuntu-debian
make command not found in linux CentOS Red Hat ubuntu Debian
December 10, 2024 - While mounting the Gluster Volume into Ubuntu 14.04 client, recently met with warning that is “WARNING: getfattr not found, certain checks will be skipped..” . We are writing this quick solution for this warning. As the WARNING itself speaks about getfattr not found. So we will work on to get this command on our system….
🌐
Tech News Today
technewstoday.com › home › linux › how to fix “make: command not found” error
How to Fix “Make: Command Not Found” Error - Tech News Today
September 20, 2022 - The Make Command Not Found error indicates that the make utility is either not installed on the system or it’s not present in the PATH variable.
🌐
Its Linux FOSS
itslinuxfoss.com › fix-bash-make-command-not-found
ItsLinuxFOSS - Tutorials on Linux, Programming & Technology
You can install Wine on Ubuntu 24.04 by adding the GPG key, winehq repository, and then installing the application from the apt install command. To if a string is empty or not in bash -z string comparison operator is used.
🌐
MakeUseOf
makeuseof.com › home › linux › how to fix the "make: command not found" error in ubuntu
How to Fix the "make: command not found" Error in Ubuntu
March 31, 2023 - To fix this issue, reinstall make with the --reinstall command. ... If this still does not work, you must manually add the binary to your $PATH as a last step. In all entirety, the above steps should work and you should get past this "command ...
🌐
It's FOSS
itsfoss.com › make-command-not-found-ubuntu
Make Command Not Found? Here's How to Fix it
January 11, 2023 - The other day I was trying to compile a program on a fresh new Ubuntu system and it threw me an error when I tried to use the make command: The program 'make' is currently not installed. You can install it by typing: sudo apt install make One of the
🌐
nixCraft
cyberciti.biz › nixcraft › howto › freebsd › linux / unix: command not found error and solution
Linux / UNIX: Command Not Found Error and Solution - nixCraft
October 28, 2020 - Can you please give information on this ? ... @Raghavendra, you need to install GCC on that linux machine. If you are using CentOS/RHEL/Fedora you follw this command #yum install gcc For Debian/Ubuntu #apt-get install gcc
🌐
Red Hat
redhat.com › en › blog › fix-command-not-found-error-linux
How to fix a "Command not found" error in Linux
November 20, 2025 - In this tutorial, you learned five ways to fix a "Command not found" error in your terminal—three of which rely on the PATH variable.
🌐
FAQforge
faqforge.com › home › fix the “make: command not found” error in ubuntu
Fix the "make: command not found" Error in Ubuntu
June 12, 2022 - To resolve this error, you can install the make package and restore the system's building and compiling capabilities. ... A user account with sudo or root privileges. Note: Although the commands used in this tutorial are specifically for the ...
🌐
iO Flood
ioflood.com › blog › install-make-command-linux
Intro to 'make' Linux Command: Installation and Usage
April 26, 2024 - One of the most common issues is the ‘make: command not found’ error. This error occurs when the ‘make’ command is not installed on your system or the system can’t locate it. To resolve this, you need to install ‘make’ using the appropriate package manager for your distribution (as we discussed earlier).
🌐
devconnected
devconnected.com › home › linux system administration › command not found in bash fixed
Command Not Found in Bash Fixed – devconnected
November 1, 2019 - Bash : command not found issue fixed by modifying the PATH environment variable in order to run commands in Bash properly.