---------------------概述---------------
YUM的前身是YUP,最初由TSS公司公司使用Python语言开发而成,后来由杜克大学的Linux开发队伍进行改造,命名为YUM
·
借助于YUM软件仓库,可以完成安装、卸载、自动升级rpm软件包等任务,能够自动查找并解决rpm包之间的依赖关系,而无需管理员逐个、手工地去安装每一个rpm包,是管理员在维护Linux时更加轻松自如。特别是在拥有大量Linux主机地本地网络中,构建一台资源服务器可以大大缓解软件安装、升级等对Internet的依赖
系统环境
两台CentOS7Linux 一台作为服务端(提供软件源)另外一台作为客户端(使用软件源)
实际操作
服务端配置
1、首先将镜像文件挂载到客户端里的/mnt/中,并查看是否挂载成功
[[email protected]~]#mount /dev/sr0 /mnt/
[[email protected]~]#df-h
2、进入到/var/目录中,然后使用yum联网状态安装"vsftpd"服务
[[email protected] ~]#yum install vsftpd -y
3、进入/var/ftp/目录,创建"centos7"目录,将挂载镜像文件/mnt/里的文件复制到"centos7中,同时创建"other"扩展目录
4、复制完成之后分别进入"centos7"和"other"中查看文件是否添加成功
[][email protected]]#cd centos7/
[[email protected] centos7]#ls
[rootlocaihost centos7]#cd ../other/
[[email protected] other]#ls
[[email protected] other]#cd repodata/
[[email protected] repodata]# ls
5、开启“vsftpd”服务,同时关闭防火墙和安全性增强功能。
[[email protected] ~]# systemctl start vsftpd
[[email protected] ~]# systemctl stop firewalld.service
[[email protected] ~]# setenforce 0
6、在客户端中用yum仓库安装"ftp"服务
[[email protected] ~]#yum install ftp -y
7、使用ftp服务访问服务端,检查是否可以连接
ftp 192.168.100.128
ls
8、退出ftp,进入/etc/yum.repos.d/,创建/bak/目录,把所有yum里的配置文件移动至/bak/目录
[[email protected] ~]# cd /etc/yum.repos.d/
[[email protected] yum.repos.d]# mkdir bak
[[email protected] yum.repos.d]# mv *.repo bak/
9、这时我们用清楚yum仓库缓存,然后再加载安装包会发现全是红色(无法使用)
[[email protected] yum.repos.d]# yum clean all
[[email protected] yum.repos.d]# yum list
10、创建"centos7.repo"进行配置
[base]
name=centos7.Packages
baseurl=ftp://192.168.100.128/centos7
enabled=1
gpgcheck=1
gpgkey=ftp://192.168.100.128/centos7/RPM-GPG-KEY-CentOS-7
[other]
name=other.Packages
baseurl=ftp://192.168.100.128/other
enabled=1
gpgcheck=0
11、这个时候先清楚缓存,再使用yum list加载软件包就可以使用了,安装http服务验证一下
[[email protected] yum.repos.d]# yum clean all
[[email protected] yum.repos.d]# yum list
[[email protected] yum.repos.d]# yum install httpd -y
原文地址:https://blog.51cto.com/14307755/2437264