Linux自建yum源仓库配置开机自启动

[root@redhat1 ~]# rm -rf /etc/yum.repos.d/* #删除存放使用yum工具的软件仓库信息的所有配置文件

[root@redhat1 ~]# vim /etc/yum.repos.d/local.repo #在yum配置文件下创建一个自建yum源的配置文件

放入光盘添加镜像文件

[root@redhat1 ~]# mkdir /mnt/cdrom #创建挂载点

[root@redhat1 ~]# mount /dev/sr0 /mnt/cdrom/ #将光盘设备挂载到/mnt/cdrom下

[root@redhat1 ~]# df -h

[root@redhat1 ~]# ls /mnt/cdrom/Packages/ | wc -l

[root@redhat1 ~]# vim /etc/fstab #设置开机后自动挂载yum源文件

[root@redhat1 ~]# mount -a #依据配置文件/etc/fstab的内容自动挂载

[root@redhat1 ~]# shutdowm -r now #重启
[root@redhat1 ~]# df -h

[root@redhat1 ~]# yum -y install #安装httpd测试