Home > Operation and Maintenance > Linux Operation and Maintenance > What should I do if make cannot be used in Linux?

What should I do if make cannot be used in Linux?

WBOY
Release: 2022-05-20 10:05:33
Original
4367 people have browsed it

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".

What should I do if make cannot be used in Linux?

#The operating environment of this tutorial: linux7.3 system, Dell G3 computer.

What to do if make cannot be used in Linux

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
Copy after login

but the window prompts:

-bash:make :command not found.
Copy after login

This is because you have not installed the make compilation tool

Solution :You can install it with the yum command

yum  -y install make
Copy after login

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 ……]
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template