rhel7和8上如何使用yum安装软件包
**
rhel7和8上如何使用yum安装软件包
rhel7
【1】挂载光盘(我选择永久挂载)
[[email protected] ~]# mount /dev/sr0 /mnt
永久挂载:①查看光盘信息
[[email protected] ~]# blkid /dev/sr0
/dev/sr0:UUID=“2015-10-30-11-11-49-00” LABEL=“RHEL-7.2 Server.x86_64” TYPE=“iso9660” PTTYPE=“dos”
②编辑配置文件
【2】本地源配置
[[email protected] ~]# cd /etc/yum.repos.d/
[[email protected] yum.repos.d]# vim rhel7-local.repo
【3】检查
[[email protected] yum.repos.d]# yum clean all
[[email protected] yum.repos.d]# yum makecache
【4】安装httpd服务
【5】网络源配置
①前提保证可以上网
若网络不可达,通过以下配置:
②访问网站https://developer.aliyun.com/mirror/
③复制并下载:
[[email protected] ~]# curl -o/etc/yum.repos.d/CentOSBase.repohttps://mirrors.aliyun.com/repo/Centos-7.repo
④修改配置文件(全局修改)
⑤由于网络源比较慢所以改为非.repo的名字
检查:
**
rhel8
**
【1】挂载光盘并查看
【2】由于光盘中的appstream和baseos两个文件夹中都有不同的package包,所以定义两个仓库路径分别为本地/mnt/AppStream和本地/mnt/BaseOS
【3】检查
[[email protected] yum.repos.d]# yum makecache
【4】安装httpd包
网络源配置和rhel7相同