使用yum命令进行包的查找与安装

358 阅读1分钟

使用yum命令进行包的查找与安装

举例安装htop命令

可能出现的问题

若出现包的安装错误,多数是由于安装源出现问题,这里建议使用阿里云yum

[root@centos7 ~]# yum install epel* -y
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
No package epel* available.
Error: Nothing to do

解决办法:(下载阿里云yum)

#创建文件夹
[root@centos7 ~]# mkdir -p /etc/yum.repos.d/bak
#把/yum.repo.d/目录下文件移到yum.repos.d/bak下
[root@centos7 ~]# mv /etc/yum.repos.d/* /etc/yum.repos.d/bak
#下载阿里云yum文件
[root@centos7 ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
#查看一下
[root@centos7 ~]# ls /etc/yum.repos.d/
bak  CentOS-Base.repo
#清理缓存
yum clean all
#加载
yum makecache

安装htop监控

前提条件

需要下载阿里云yum、按照上面(下载阿里云yum)操作即可、做过可忽略

[root@centos7 ~]# yum install wget -y
[root@centos7 ~]# yum install epel*
[root@centos7 ~]# ls /etc/yum.repos.d/
bak  CentOS-Base.repo  epel.repo  epel-testing.repo

[root@centos7 ~]# yum provides htop
[root@centos7 ~]# yum clean all
[root@centos7 ~]# yum makecache 
[root@centos7 ~]# yum install htop
[root@centos7 ~]# htop

在这里插入图片描述