1+X云计算平台运维与开发认证YUM源管理
YUM源管理开发一个平台需要多少钱
博主⽤的⾃⼰的镜像
1 当前有⼀个centos7.2-1511.iso的镜像⽂件,使⽤这个⽂件配置yum源,要求将这个镜像⽂件挂载在/opt/cenos⽬录。还存在⼀个ftp 源,IP地址为192.168.100.200,ftp共享的⽬录为/opt,/opt⽬录中存在⼀个iaas⽬录(该⽬录下存在⼀个repodata⽬录)请问如何配置⾃⼰的po⽂件,使得可以使⽤这两个地⽅的软件包,安装⽂件。请将po⽂件的内容以⽂本形式提交到答题框。
创建/opt/cenos⽬录
[root@localhost ~]# cd ../opt
[root@localhost opt]# mkdir centos
[root@localhost opt]# ls
centos  rh
关闭防⽕墙
[root@localhost ~]# systemctl stop firewalld
[root@localhost ~]# systemctl disable firewalld
Removed symlink /etc/systemd/system/multi-user.target.wants/firewalld.service.
Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
[root@localhost ~]# vim /etc/selinux/config
注释:将SELINUX=enforcing改成SELINUX=Permissive
[root@localhost ~]# setenforce 0
[root@localhost ~]# getenforce
Permissive
挂载镜像 已成功挂载
[root@localhost ~]# mount -o loop CentOS-7-x86_64-DVD-2003.iso /opt/centos
mount: /root/CentOS-7-x86_64-DVD-2003.iso 已经挂载
编辑⽂件
# vim /pos.po
name=centos
baseurl=file:///opt/centos
enabled=1
gpgcheck=0
name=iaas
baseurl=ftp://192.168.100.200/iaas
enabled=1
gpgcheck=0
查看⽂件
# cat /pos.po
name=centos
baseurl=file:///opt/centos
enabled=1
gpgcheck=0
name=iaas
baseurl=ftp://192.168.100.200/iaas
enabled=1
gpgcheck=0

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。