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