Home > Article > Operation and Maintenance > What should I do if make cannot be used in Linux?
In Linux, you can use yum to install a make compiler to solve the problem that make cannot be used. yum is a command based on rpm package management. It can download rpm packages from the specified server and install them. The syntax is " yum install -y make".
#The operating environment of this tutorial: linux7.3 system, Dell G3 computer.
The "make" command cannot be executed in Linux
I want to install the network card driver manually. The network card driver has also been copied to the Linux system.
Next you should enter: make
make install
but the window prompts:
-bash:make :command not found.
This is because you have not installed the make compilation tool
Solution :You can install it with the yum command
yum -y install make
The yum command is called Yellow dog Updater, Modified. It is a Shell front-end package manager in Fedora, RedHat and SUSE. Based on RPM package management, it can automatically download RPM packages from designated servers and install them. It can automatically handle dependencies and install all dependent software packages at once, without the need to download and install them again and again.
yum provides commands to find, install, and delete a certain, a group, or even all software packages. These commands are concise and easy to remember.
Yum command syntax
yum [options] [command] [package ……]
Recommended learning: Linux video tutorial
The above is the detailed content of What should I do if make cannot be used in Linux?. For more information, please follow other related articles on the PHP Chinese website!