[] ---- Linux operating system using the yum command to install the software prompts No package numactl.x86_64 available ....

When you install mysql need to install numactl.x86_64

Being given using yum -y install numactl.x86_64

[root@sdp6 mysql]# yum -y install numactl.x86_64
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
Setting up Install Process
No package numactl.x86_64 available.
Error: Nothing to do

 

Solution:

1. First check network settings DNS

cat /etc/resolv.conf

2. The test is on the external network

ping www.baidu.com

3. Check source configuration yum

cd /etc/yum.repos.d/

ll

Explain the lack of source configuration file yum

copy the following four files to the current directory from another machine

4. Continue installation numactl.x86_64

yum -y install numactl.x86_64

If the following message appears

The need to use resources under the yum command to clear

yum clean all

And then re-run the install command

Description OK, you can proceed with the installation

Guess you like

Origin blog.csdn.net/ningjiebing/article/details/89411020