本文共 1086 字,大约阅读时间需要 3 分钟。
刚学Linux时都是按照网络上的文章原原本本的安装,学习一段时间后发现有些程序不是自己所需要的,而且无形中占用了空间,于是安装mini版本的CentOS,但是使用中经常使用到一些命令,比如ifconfig, mail都没有,在没有网络的时候搭建个本地yum源来使用就很方便的安装软件了。现在介绍本地yum源的搭建
1、将安装光盘插入到光驱2、挂载光驱[root@www1 ~]# mount -r /dev/sr0 /media/cdrom #挂载目录自行设定[root@www1 ~]# cd /etc/yum.repos.d/[root@www1 ~]# vim local.repo[base]name=CentOS 7 Release #仓库名称baseurl=file:///media/cdrom #仓库地址repodata地址enable=1gagcheck=0:wq[root@www1 ~]# yum repolist到此本地yum源已创建完成。网络yum源与本地yum源创建方法一样,只是在创建时多了一步自行创建repodata
如下:[root@localhost ~]# yum install -y createrepo #创建yum仓库[root@localhost ~]# yum install -y httpd #以http服务为例,可以是ftp等[root@localhost ~]# ss -tnl #确认80端口开启[root@localhost ~]# mkdir /var/www/html/repo[root@localhost ~]# cd /var/www/html/repo #将软件包下载到该目录[root@localhost repo]# createrepo ./ #创建repodata目录[root@localhost ~]# vim /etc/yum.repos.d/http4my.repo [web]name=web4mybaseurl= #安装httpd的主机地址gpgcheck=0 #软件源可信任,一般不做校验[root@localhost yum.repos.d]# yum repolist #查看yum源已添加成功... repo id repo name statusbase CentOS-6 - Base 6,713web web4my 318转载于:https://blog.51cto.com/10201808/2140999