当前位置:   article > 正文

UOS服务器操作系统创建本地外网仓库_uos配置yum源

uos配置yum源


注意:
1.UOS服务器操作系统给可以访问外网
2.系统没有试用期过期
3.该方法适用于统信息服务器操作系统E版

1)创建存放仓库数据的目录

mkdir ~/Downloands/store
  • 1

2)查询仓库信息

yum repolist
  • 1

在这里插入图片描述
仓库说明:
UnionTechOS-Server-20-everything 是全量仓库,包含所有安装包。
UnionTechOS-Server-20-update 新增或更新的软件包在update仓库发布。

3)下载仓库命令

1.下载全量仓库
# reposync --repoid=UnionTechOS-Server-20-everything ~/Downloads/store
2.下载update仓库
# sed -i 's/enabled=0/enabled=1/g' /etc/yum.repos.d/UnionTechOS-everything-x86_64.repo
# reposync --repoid=UnionTechOS-Server-20-update ~/Downloads/store
  • 1
  • 2
  • 3
  • 4
  • 5

4)设置仓库

1.全量仓库配置为软件仓库
# createrepo /store/UnionTechOS-Server-20-everything/
2. update仓库配置为软件仓库
# createrepo /store/UnionTechOS-Server-20-update/
  • 1
  • 2
  • 3
  • 4

在这里插入图片描述

5)配置本地repo文件

关闭其他仓库
# mkdir /etc/yum.repos.d/back
# mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/back
配置一个本地仓库源文件
# vi /etc/yum.repos.d/UnionTechOS-Local.repo
[UnionTechOS-Local]
name=UnionTechOS-Local
baseurl=file:///root/Downloads/store/UnionTechOS-Server-20-everything/
enabled=1
gpgcheck=0
# vi /etc/yum.repos.d/UnionTechOS-Local_update.repo
[UnionTechOS-Local_update]
name=UnionTechOS-Local_update
baseurl=file:///root/Downloads/store/UnionTechOS-Server-20-everything/
enabled=1
gpgcheck=0
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

6)验证本地仓库

# yum repolist
# yum list | grep docker
  • 1
  • 2

在这里插入图片描述

7)仓库更新

# reposync -n --repoid=UnionTechOS-Server-20-update -p /root/Downloads/store
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/408396
推荐阅读
相关标签
  

闽ICP备14008679号