1 创建rhel-debuginfo.repo,如果有则先备份再删除
cd /etc/yum.repos.d
rm rhel-debuginfo.repo
vi rhel-debuginfo.repo
插入以下内容
[Server]
name=Red Hat Enterprise Linux Server
baseurl=file:///mnt #本地iso的挂载路径
enabled=1 #可以使用yum
gpgcheck=0 #设置不检查gpgkey
gpgkey=file:///mnt/RPM-GPG-KEY-RedHat-release # 配置gpgkey的路径
2 修改yumRepo.py配置文件
cd /usr/lib/python2.6/site-packages/yum/
vi yumRepo.py
找到 remote = url + ‘/’ + relative #802行
改为 remote = "/mnt" + "/" + relative3 挂载iso文件 mount /dev/cdrom /mnt4 测试 安装ftp 默认没有安装
yum list | grep vsftpd vsftpd.i686 2.2.2-11.el6 @Server 安装:yum install vsftpd.i686 [root@redhat6 yum]# rpm -e vsftpd.i686
[root@redhat6 yum]# yum install vsftpd.i686
Loaded plugins: fastestmirror, product-id, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
Loading mirror speeds from cached hostfile
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package vsftpd.i686 0:2.2.2-11.el6 will be installed
--> Finished Dependency ResolutionDependencies Resolved======================================================================================================================================
Package Arch Version Repository Size
======================================================================================================================================
Installing:
vsftpd i686 2.2.2-11.el6 Server 157 kTransaction Summary
======================================================================================================================================
Install 1 Package(s)Total download size: 157 k
Installed size: 344 k
Is this ok [y/N]: y
Downloading Packages:
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Warning: RPMDB altered outside of yum.
** Found 3 pre-existing rpmdb problem(s), "yum check" output follows:
PackageKit-0.5.8-21.el6.i686 has missing requires of PackageKit-yum = ("0", "0.5.8", "21.el6")
PackageKit-0.5.8-21.el6.i686 has missing requires of PackageKit-yum-plugin = ("0", "0.5.8", "21.el6")
rhn-check-1.0.0.1-4.el6.noarch has missing requires of yum-rhn-plugin >= ("0", "0.9.1", "35")
Installing : vsftpd-2.2.2-11.el6.i686 1/1
Verifying : vsftpd-2.2.2-11.el6.i686 1/1Installed:
vsftpd.i686 0:2.2.2-11.el6Complete!验证成功
推荐阅读:配置EPEL YUM源 http://www.linuxidc.com/Linux/2012-10/71850.htmRedhat 本地yum源配置 http://www.linuxidc.com/Linux/2012-11/75127.htmRedHat Linux 本地yum源的配置 http://www.linuxidc.com/Linux/2013-08/88217.htmRedHat 6.2 Linux修改yum源免费使用CentOS源 http://www.linuxidc.com/Linux/2013-07/87383.htm更多RedHat相关信息见RedHat 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=10CentOS 6.4配置本地源yumEAS7.5 在Linux 6.4 x86_64位系统上安装的常见问题相关资讯 yum RHEL6.4 yum源
- yum安装与卸载软件常见命令 (05月24日)
- 升级Python导致yum报错 (12/21/2015 15:14:23)
- RHEL7.0配置CD-ROM为本地YUM (12/10/2015 09:24:47)
| - CentOS 6.5下YUM仓库的部署 (03月11日)
- 从CentOS安装R中看yum、rpm、repo (12/18/2015 14:48:10)
- Linux Study之--CentOS 创建本地 (12/03/2015 19:47:40)
|
本文评论 查看全部评论 (0)