Centos8服务器中yum安装时的错误Unable to find a match、No URLs in mirrorlist解决

avatar
作者
猴君
阅读量:3

错误一、安装很多软件提示No match for argument Unable to find a match

    开始遇到报错后更新了一下源,但发现依然是提示No match for argument Unable to find a match。如下:肯定和Centos8有点关系。

[root@test test]# yum install iftop
No match for argument: iftop
centos8 Error: Unable to find a match: iftop

    有些资料说是Centos8上的yum源里面没有epel,而iftop等一些软件被迁移到了epel源,需要先使用yum install epel-release来安装epel源。但我安装之后依然未成功,最后我通过下载文件编译安装的。过程如下:

cd /usr/local/src wget http://www.ex-parrot.com/pdw/iftop/download/iftop-0.17.tar.gz tar zxvf iftop-0.17.tar.gz cd iftop-0.17 ./configure --prefix=/usr/local/iftop make && make install ln -s /usr/local/iftop/sbin/iftop /usr/sbin/iftop

期间还碰到的一些 configure 报错,整理如下:
报错:configure: error: no acceptable C compiler found in $PATH
问题:缺少gcc编译环境
解决:安装gcc编译环境:yum install -y gcc

报错:configure: error: can't find pcap.h You're not going to get very far without libpcap.
问题:系统缺少libpcap-devel包。
解决:安装libpcap-devel包
wget htps://repo.almalinux.org/almalinux/8/PowerTools/x86_64/os/Packages/libpcap-devel-1.9.1-5.el8.x86_64.rpm
rpm -ivh libpcap-devel-1.9.1-5.el8.x86_64.rpm --force --nodeps

报错:make: yacc: Command not found   make: *** [grammar.c] Error 127 
问题:缺少byacc包
解决:yum install byacc 

报错:Can't find a curses library supporting mvchgat. Consider installing ncurses. 
问题:系统缺少ncurses-devel包
解决:yum  install ncurses-devel

错误二、Error: Cannot prepare internal mirrorlist: No URLs in mirrorlist

    刚刚做的系统Centos8.0使用yum update好几十分钟之后,使用yum install来安装工具,上来就报错了:Error: Failed to download metadata for repo 'appstream': Cannot prepare internal mirrorlist: No URLs in mirrorlist

    悲哀啊!CentOS,Community Enterprise Operating System, 基本和RHEL(红帽企业 Linux)一样的产品,一个好用又免费的社区企业操作系统。CentOS 8操作系统版本于2022年1月31日寿终正寝,其生命结束了。更加凄凉的是,目前CentOS 8已经停止维护一年多,但仍然还没看到有一个稳定能替代centos生态位的发行版出现。,以后再也不会有免费的RHEL了。

    如果目前有业务仍需要使用CentOS 8中的一些安装包,建议切换至CentOS-Vault源,当然也可以使用其它的源。执行下面两行代码

sudo sed -i -e "s|mirrorlist=|#mirrorlist=|g" /etc/yum.repos.d/CentOS-* sudo sed -i -e "s|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g" /etc/yum.repos.d/CentOS-*

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!