搭建本地yum仓库

前端之家收集整理的这篇文章主要介绍了搭建本地yum仓库前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如果处在局域网中,主机不能访问外网,这时我们可以搭建一个本地的yum源,解决安装问题:

1、挂载镜像到/mnt目录,我这里使用的是安装镜像

#mkdir  /mnt/cdrom
#mount /dev/cdrom /mnt/cdrom
# df -hT
/dev/sr0            iso9660   4.1G  4.1G     0 100% /mnt/cdrom
cp -r /etc/yum.repos.d /etc/yum.repos.d.bak
rm -f /etc/yum.repos.d/*

vim /etc/yum.repos.d/dvd.repo

#内容如下

[dvd]
name=install dvd
baseurl=file:///mnt/cdrom
enable=1
gpgcheck=0
yum clean all
 yum makercache
[root@aiker01 yum.repos.d]# yum repolist all
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
repo id                                     repo name                                        status
dvd                                         install dvd                                      enabled: 3,831
repolist: 3,831

#yum list 查看yum中的安装包如下图

原文链接:https://www.f2er.com/bash/389323.html

猜你在找的Bash相关文章