yum源三种方式安装

前端之家收集整理的这篇文章主要介绍了yum源三种方式安装前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

yum源安装

参考网址:

http://blog.chinaunix.net/uid-27645504-id-3809074.html

http://blog.sina.com.cn/s/blog_5fc3a8b60100n1ln.html

http://blog.csdn.net/u013000139/article/details/50442197

1yum源本地安装

1 ISO镜像文件拷到系统:

A光盘挂载 mount /dev/cdrom /mnt

B 通过ftp等其他方式传送到系统

2 解压ISO文件

chmod 777 xxx.iso

mount -t iso9660 -o loop xxx.iso /mnt/iso文件解压到/mnt/目录下。

3 配置文件/etc/yum.repos.d/my.repo

[rhel]

name=Red Hat

baseurl=file:///mnt/

enabled=1

gpgcheck=0

#gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release

4测试

yum clean all

yum makecache

yum list

2 ftp局域网方式

yum仓库服务端配置:

2.1、将镜像挂载到/media

挂载镜像一定要是此系统安装的镜像

mount -o loop CentOS-6.5-i386-bin-DVD1.iso /media/

2.2、安装 vsftpd & createrepo

yum install -y vsftpd

yum install -y createrepo*

2.3、进入media目录,所有的RPM安装包放在Packages,且在/media 下面有repodata文件,说明已经生成了软件列表

2.4、建立yum文件

mkdir /var/ftp/pub/yum

copy 文件到工作目录

cp -r /media/* /var/ftp/pub/yum注: -r :递归所有目录文件

2.5、启动FTP服务,创建含有数据包的header文件

systemctl startvsftpd

createrepo -g /var/ftp/pub/yum/repodata/repomd.xml /var/ftp/pub/yum/

yum客户端配置:

2.6、换另外一台服务器,配置yum文件

oot@server-test ~]# cat /etc/yum.repos.d/localyum.repo

[localyum]
name=localyum
baseurl=ftp://192.168.161.132/pub/yum
enable=1
gpgcheck=0

2.7yum clean all

yum makecache

yum install ftp

注意:关闭防火墙和selinux

3http外网方式

[rhel]

name=Red Hat

baseurl=http://mirrors.163.com/centos/7/os/x86_64/

enabled=1

gpgcheck=1

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

推荐几个常用的internet yum
中科大yum源:http://centos.ustc.edu.cn
网易yum源:http://mirrors.163.com
搜狐yum源:http://mirrors.sohu.com

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

猜你在找的Bash相关文章