Centos8服务器中yum安装时的错误Unable to find a match、No URLs in mirrorlist解决
创始人
2025-01-20 15:36:21
0

错误一、安装很多软件提示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-*

相关内容

热门资讯

ArcGIS无法链接在线地图或... 这几天我们分享了!谷歌卫星影像图归来!ArcGIS直连!快...
《详细》使用ventoy制作l... 通过docker部署一键爬虫,爬取海量电影;部署ai绘画;...
Vue 大文件切片上传实现指南... Vue 大文件切片上传实现指南背景        在Web开发中,文件上传是一个常见的...
解决Pycharm运行服务器文... 解决Pycharm运行服务器文件时出现Cannot find remote credentials ...
解决服务器能ping通但端口不... 前言是本地机房做的esxi系统,测试环境使用的虚拟机。一切都哼正常,突然...
IDEA2023连接服务器do... 文章目录TCP 方式连接docker1. 服务器docker配置修改查看虚拟机中Docker配置文件...
idea实现ssh远程连接服务... 1. 首先,打开idea,点击左上角File->settings2. 点...
ubuntu搭建freerad... 1. 综述802.1X 是一种基于端口的网络访问控制协议,常用于无线局域网࿰...
【Linux】十分钟快速了解L... 目录💖一. 关机指令01. shutdown02. halt03. reboot&#...
服务器遭遇挖矿病毒syst3m... 01 什么是挖矿病毒挖矿病毒通常是恶意软件的一种,它会在受感染的系统上无授权地挖掘加密...