本地yum源
一、挂载镜像,将本地光盘挂载到指定文件夹
[[email protected] ~]# mkdir /opt/mount
[[email protected] ~]# mount /dev/sr0 /opt/mount/
二、备份 其他配置源
[[email protected]]# cd /etc/yum.repos.d/
[[email protected] yum.repos.d]# tar zcvf repo-bk.tar.gz *
三、配置本地源
[[email protected] yum.repos.d]# vi centos-media.repo
添加如下内容:
[DVD] ####名字
name=This is local dvd ####源解释
baseurl=file:///opt/mount/ #### 资源路径
gpgcheck=0 ####pgp检查 0关闭 1开启
enabled=1 #### 1开启源 0关闭源
priority=1 #### 在原基础上加入priority=1 ;数字越小优先级越高
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 ###gpgkey路径
四、制作cache
[[email protected] ~]# yum clean all
已加载插件:fastestmirror, langpacks
正在清理软件源: DVD
Cleaning up everything
Cleaning up list of fastest mirrors
[[email protected] ~]# yum makecache
已加载插件:fastestmirror, langpacks
DVD | 3.6 kB 00:00:00
(1/4): DVD/group_gz | 155 kB 00:00:00
(2/4): DVD/filelists_db | 2.9 MB 00:00:00
(3/4): DVD/other_db | 1.2 MB 00:00:00
(4/4): DVD/primary_db | 2.8 MB 00:00:00
Determining fastest mirrors
元数据缓存已建立
局域网yum源:
局域网YUM源可以配成:本地YUM源 + FTP服务器
一、下载vsftp
yum -y install vsftpd
二、配置vsftp
[[email protected] ~]# cd /etc/vsftpd/
[[email protected] vsftpd]
[[email protected] vsftpd]# vi vsftpd.conf ##编辑主配置文件
[[email protected] vsftpd]# anon_root=/opt/mount/ ##添加匿名访问root目录
三、关闭selinux
[[email protected] /]# vi /etc/selinux/config
修改成 SELINUX=disabled ##永久关闭 重启生效
四、启动vsftp
systemctl start vsftpd ##启动服务
systemctl enable vsftpd ##开机启动
五、客户端配置
修改源配置:
[[email protected] yum.repos.d]# vi CentOS-Media.repo
[c7-media]
name=CentOS-$releasever - Media
baseurl=ftp://192.168.0.106/mount
gpgcheck=0
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
原文地址:https://www.cnblogs.com/Minki/p/9307767.html