Linux技能篇-yum源搭建(本地源和公网源)
为了搭建本地YUM源,你需要以下几个步骤:
- 挂载Linux发行版ISO到指定目录。
- 创建或编辑YUM仓库配置文件。
- 清理YUM缓存并生成新的缓存。
以下是具体的命令操作:
# 挂载ISO到/mnt目录
mount -o loop /path/to/your/linux.iso /mnt
# 创建本地YUM源的repo文件
tee /etc/yum.repos.d/local.repo << 'EOF'
[local]
name=Local Repository
baseurl=file:///mnt
enabled=1
gpgcheck=0
EOF
# 清理YUM缓存并生成新的缓存
yum clean all
yum makecache
对于公网YUM源,如果你想配置一个公网可用的YUM源,你需要确保你的服务器具有公网IP,并且可以访问外网。以下是配置公网YUM源的步骤:
- 安装并启动YUM服务(如果尚未安装)。
- 将本地YUM仓库目录共享出去。
- 创建或编辑YUM仓库配置文件,指向你的公网服务器。
以下是具体的命令操作:
# 安装并启动YUM服务
yum install -y createrepo
systemctl enable --now createrepo.service
# 共享YUM仓库目录,例如通过Nginx或者HTTP服务
# 假设你已经有一个Nginx服务器运行在80端口
mkdir /var/www/html/repo
cp -r /mnt/* /var/www/html/repo
chown -R nginx:nginx /var/www/html/repo
# 创建公网YUM源的repo文件
tee /etc/yum.repos.d/public.repo << 'EOF'
[public]
name=Public Repository
baseurl=http://your.public.server.ip/repo
enabled=1
gpgcheck=0
EOF
# 清理YUM缓存并生成新的缓存
yum clean all
yum makecache
请根据你的实际情况替换/path/to/your/linux.iso
、your.public.server.ip
和Nginx的用户和组。
评论已关闭