Linux下搭建yum库
大家都习惯性了 rpm ... 的安装方式,可是对于一些软件的依赖性也感到厌烦,所有就有了 yum 的方式来装它们。下面我们就来看看这简单的安装方式吧!
首先挂载光盘
[root@localhost 桌面]# mount /dev/sr0 /mnt/ //把光盘挂载到 mnt 目录下
mount: block device /dev/sr0 is write-protected, mounting read-only //如果不是这条提示的话看下是否挂载好光盘
然后编辑配置文件
[root@localhost 桌面]# vi /etc/yum.repos.d/rhel-source.repo //不知道的可以 Tab
进入配置文件
[rhel-source]
name=Red Hat Enterprise Linux $releasever - $basearch - Source
baseurl=ftp://ftp.redhat.com/pub/redhat/linux/enterprise/$releasever/en/os/SRPMS/
enabled=0
gpgcheck=1 //删除下面的 在命令模式下输入 99dd
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
[rhel-source-beta]
name=Red Hat Enterprise Linux $releasever Beta - $basearch - Source
baseurl=ftp://ftp.redhat.com/pub/redhat/linux/beta/$releasever/en/os/SRPMS/
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-beta,file:///etc/pki/rpm-gpg/RPM-GPGKEY-redhat-release
修改为:
[rhel-source]
name=Red Hat Enterprise Linux $releasever - $basearch - Source
baseurl=file:///mnt //这里是你所挂载的目录
enabled=1
gpgcheck=0
保存退出
Esc 退出,Shift+: 输入 wq或者 x 保存退出。
然后就可以使用yum安装软件了。
本文出自 “Darker Notes” 博客,请务必保留此出处http://liumange.blog.51cto.com/9453694/1629787
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。