如何配置本地yum源

发布网友 发布时间:2022-02-27 03:29

我来回答

2个回答

懂视网 时间:2022-02-27 07:51

产品型号:Thinkpad E15

系统版本:centos8

配置本地yum源

1、挂载镜像:

先确定虚拟机光驱中有加载系统镜像

 

[root@xuegod63 Packages]# mount /dev/cdrom /mnt/ 

[root@xuegod63 Packages]# ls /mnt/

2、本地配置yum源文件:

centos8本地YUM源配置:

在centos8当中,本地光盘中的安装包被分别放在了两个路径下。假设挂载路径为/mnt,那么两个Package路径分别为:/mnt/AppStream/Packages和/mnt/BaseOS/Packages。

因为IOS镜像内的设置,所以导致了在编辑本地yum源的时候需要分别写两个路径在配置文件中。同时网络yum源也被分别写到了两个配置文件内。所以就需要把两个网络yum源配置文件改名。

 

#centos8与之前版本不同的是增加了一个CentOS-AppStream.repo文件,CentOS-AppStream.repo和CentOS-Base.repo文件都需要移除目录或者改名。

BaseOS:类似于centos7中的Base软件仓库,主要提供了OS系统的基础组建,提供的是RPM形式的包,因为都是RPM包形式所以它支持与之前版本兼容(support terms similar)。

AppStream:它提供的是系统以外的应用程序,如httpd,nginx,php,mariadb-server等

(1)首先挂载光盘:

[root@localhost ~]# mount /dev/sr0 /mnt/

mount: /mnt: WARNING: device write-protected, mounted read-only.

(2)修改本地yum配置文件:

[root@bogon ~]# vim /etc/yum.repos.d/CentOS-Media.repo 

[c8-media-BaseOS]

name=CentOS-BaseOS-$releasever - Media

baseurl=file:///mnt/BaseOS

gpgcheck=1

enabled=1

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial

#BaseOS区域。

[c8-media-AppStream]

name=CentOS-AppStream-$releasever - Media

baseurl=file:///mnt/AppStream

gpgcheck=1

enabled=1

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial

#AppStream区域。

#添加修改完两个区域后保存退出。

(3)测试yum源

[root@bogon ~]# yum list  #能查看开软件包,说明配置yum源成功

总结:

1、挂载本地光盘镜像

2、配置本地yum仓库配置文件

3、测试yum源

热心网友 时间:2022-02-27 04:59

首先 要先挂载光盘,把光盘挂载到media/CentOS/,media/cdrom/,或者media/cdrecorder/ 这样就不用修改配置文件了。如果想挂载到其他目录,只要修改下baseurl=file:///自己挂载的目录,就可以了。配置文件在 /etc/yum.repos.d/CentOS-Media.repo。

接着 把/etc/yum.repos.d/CentOS-Base.repo改下名,命令如下:
QUOTE:
#mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak

检查下配置文件的有没设置正确,命令如下:

QUOTE:
#cat /etc/yum.repos.d/CentOS-Media.repo
# CentOS-Media.repo
#
# This repo is used to mount the default locations for a CDROM / DVD on
# CentOS-5. You can use this repo and yum to install items directly off the
# DVD ISO that we release.
#
# To use this repo, put in your DVD and use it with the other repos to
# yum --enablerepo=c5-media [command]
#
# or for ONLY the media repo, do this:
#
# yum --disablerepo=\* --enablerepo=c5-media [command]

[c5-media]
name=CentOS-$releasever - Media
baseurl=file:///media/CentOS/
file:///media/cdrom/
file:///media/cdrecorder/
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-beta

其实配置文件中已经有教怎么做的了,我好像是多此一举了。

最后 就是要安装软件咯,命令如下:

#yum --enablerepo=c5-media install gimp
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com