File: /run/media/kiosk/CA9C-5CE5/linux的日常/docs/练习题/第十三单元练习Page 1 of 1

<<<第十三单元练习>>>

1.在server主机中配置yum仓库,并安装gcc编辑器

挂载镜像到指定位置

mount /iso/rhel-server-7.1-x86_64-dvd.iso /var/www/html/rhel7.1

指定本地

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

[server]

name=yum

baseurl=file:///var/www/html/rhel7.1

gpgcheck=0

:wq

建立http共享服务

yum install http -y

systemctl stop firewalld

systemctl disable firewalld

systemctl start httpd

systemctl enable httpd

测试:

在网页中:172.25.254.x/rhel7.1

建立第三方软件库

【software】

name=software

baseurl=file:///software

gpgcheck=0

:wq

yum install createrepo -y

createrepo -v /rpm库

安装gcc软件

yum install gcc -y