- 浏览: 65816 次
- 性别:
- 来自: 深圳
文章分类
最新评论
-
zhangheng54321:
[b][/b][i][/i][u][/u]引用 ...
基于HTTP协议的轻量级开源简单队列服务:HTTPSQS -
relic6:
十分感谢。。rhel5成功yum了!!
RHEL5配置YUM源
YUM顾名思义,Yellow Dog Updater, Modified. Yum为基于RPM系统做了相同的工作。它提供了一个简单的命令,可用于在首先安装和更新任何其他必要的软件包以满足所需的软件包依赖关系之后,自动化安装或更新一个软件包,类似Debian下apt-get的工具.
YUM的特点:
可以同时配置多个资源库(Repository)
简洁的配置文件(/etc/yum.conf
自动解决增加或删除rpm包时遇到的倚赖性问题
使用方便
保持与RPM数据库的一致性
RHEL AS5可以通过Yum升级系统的功能,但默认rhel-debuginfo.repo 的设置是从RedHat的Yum源来升级系统,如果您没有购买Redhat的服务,Redhat5后面版本升级是收费,需要key才能升级,那么使用Yum是无法升级的。幸运的是,由于centos是免费的企业版本,可以借用centos yum源更新RHEL AS5系统.
配置YUM 从centos5源更新软件
[root@clinet ~]# rpm --import http://ftp.twaren.net/Linux/CentOS/RPM-GPG-KEY-CentOS-5
安装那个ftp.twaren.net的GPG,也可增加其他资源库,自己选择一个离自己地理位置近点
[root@clinet ~]# rpm -qa gpg-pubkey*
检查GPG Key
gpg-pubkey-e8562897-459f07a4
如果要删除Key,使用以下命令:
[root@clinet ~]# rpm -e gpg-pubkey-e8562897-459f07a4
[root@clinet ~]# vi /etc/yum.repos.d/rhel-debuginfo.repo
[rhel-debuginfo]
name=Red Hat Enterprise Linux $releasever - $basearch - Debug
baseurl=ftp://ftp.redhat.com/pub/redhat/linux/enterprise/$releasever/en/os/$basearch/Debuginfo/
baseurl是你的YUM源地址
enabled=0
是否启用这个仓库,1为起用,0为禁用
gpgcheck=1
设置gpgcheck=1会让yum检查每个下载的RPM的GnuPG签名。这么做是因为你需要适当的GnuPG key注册到您的RPM数据库。可以防止被欺骗,如:非法入侵发行版网站,木马导入软件包,使不知情用户下载
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
GPGKEY 的存放地址
以上默认有的,复制添加以下更新点插入到rhel-debuginfo.repo文本里后面
[base]
name=Red Hat Enterprise Linux $releasever -Base
baseurl=http://ftp.twaren.net/Linux/CentOS/5/os/$basearch/
gpgcheck=1
[update]
name=Red Hat Enterprise Linux $releasever -Updates
baseurl=http://ftp.twaren.net/Linux/CentOS/5/updates/$basearch/
gpgcheck=1
[extras]
name=Red Hat Enterprise Linux $releasever -Extras
baseurl=http://ftp.twaren.net/Linux/CentOS/5/extras/$basearch/
gpgcheck=1
[addons]
name=Red Hat Enterprise Linux $releasever -Addons
baseurl=http://ftp.twaren.net/Linux/CentOS/5/addons/$basearch/
gpgcheck=1
[root@clinet ~]#yum clean all 清除缓存及旧的包
[root@clinet ~]# yum install httpd 测试是否能更新软件
注意:当第一次使用yum或yum资源库有更新时,yum会自动下载所有所需的headers放置于/var/cache/yum目录下,所需时间可能较长.请耐心等待,所以后面会显示一连串数据.
Loaded plugins: rhnplugin, security
This system is not registered with RHN.
RHN support will be disabled.
addons | 951 B 00:00
primary.xml.gz | 201 B 00:00
base | 2.1 kB 00:00
primary.sqlite.bz2 | 1.6 MB 00:34
update | 1.9 kB 00:00
primary.sqlite.bz2 | 463 kB 00:09
extras | 1.1 kB 00:00
primary.xml.gz | 107 kB 00:01
extras 325/325
Setting up Install Process
Parsing package install arguments
Resolving Dependencies
--> Running transaction check
---> Package httpd.i386 0:2.2.3-31.el5.centos.2 set to be updated
filelists.xml.gz | 194 B 00:00
filelists.sqlite.bz2 | 2.3 MB 00:49
filelists.sqlite.bz2 | 3.3 MB 01:13
filelists.xml.gz | 151 kB 00:02
--> Finished Dependency Resolution
Dependencies Resolved
===========================================================================================
Package Arch Version Repository Size
===========================================================================================
Installing:
httpd i386 2.2.3-31.el5.centos.2 update 1.2 M
Transaction Summary
===========================================================================================
Install 1 Package(s)
Update 0 Package(s)
Remove 0 Package(s)
Total download size: 1.2 M
Is this ok [y/N]: y
Downloading Packages:
httpd-2.2.3-31.el5.centos.2.i386.rpm | 1.2 MB 00:26
Running rpm_check_debug
Running Transaction Test
Finished Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : httpd [1/1]
Installed: httpd.i386 0:2.2.3-31.el5.centos.2
Complete!
说明可以用yum安装软件了
[root@clinet ~]#
配置YUM 从本地光盘更新软件
[root@clinet ~]# mkdir /mnt/cdrom
创建挂载点
[root@clinet ~]# mount /dev/cdrom /mnt/cdrom
挂载光盘
mount: block device /dev/cdrom is write-protected, mounting read-only
[root@clinet /]# ll /etc/yum.repos.d/
total 4
-rw-r--r-- 1 root root 781 Feb 24 03:19 rhel-debuginfo.repo
[root@clinet /]# cd /etc/yum.repos.d/
[root@clinet yum.repos.d]# cp rhel-debuginfo.repo rhel-debuginfo.repo.bak
拷贝为rhel-debuginfo.repo.bak做备份
[root@clinet yum.repos.d]# ll
total 8
-rw-r--r-- 1 root root 781 Feb 24 03:19 rhel-debuginfo.repo
-rw-r--r-- 1 root root 781 Feb 25 00:34 rhel-debuginfo.repo.bak
[root@clinet yum.repos.d]# vi rhel-debuginfo.repo
编辑rhel-debuginfo.repo,插入以下代码
[rhel-debuginfo]
name=Red Hat Enterprise Linux $releasever - $basearch - Debug
baseurl=file:///mnt/cdrom/Server
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
其实上面这样设置就已经ok,但是要更新xen.rpm,就更新不到,因为它在/mnt/cdrom/VT下面,为了比较完善,我们修改参数为以下配置
[Cluster]
name=Red Hat Enterprise Linux $releasever - $basearch - Cluster
baseurl= file:///mnt/cdrom/Cluster
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
[ClusterStorage]
name=Red Hat Enterprise Linux $releasever - $basearch - ClusterStorage
baseurl= file:///mnt/cdrom/ClusterStorage
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
[Server]
name=Red Hat Enterprise Linux $releasever - $basearch - Server
baseurl= file:///mnt/cdrom/Server
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
[VT]
name=Red Hat Enterprise Linux $releasever - $basearch - VT
baseurl= file:///mnt/cdrom/VT
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
[root@clinet yum.repos.d]# yum clean all
清除缓存及旧的包
Loaded plugins: rhnplugin, security
Cleaning up Everything
[root@clinet yum.repos.d]# yum install httpd
测试是否能更新软件
Loaded plugins: rhnplugin, security
This system is not registered with RHN.
RHN support will be disabled.
rhel-debuginfo | 1.3 kB 00:00
primary.xml.gz | 716 kB 00:00
rhel-debuginfo 2255/2255
Setting up Install Process
Parsing package install arguments
Resolving Dependencies
--> Running transaction check
---> Package httpd.i386 0:2.2.3-22.el5 set to be updated
filelists.xml.gz | 2.3 MB 00:00
--> Finished Dependency Resolution
Dependencies Resolved
==================================================================================================================================
Package Arch Version Repository Size
==================================================================================================================================
Installing:
httpd i386 2.2.3-22.el5 rhel-debuginfo 1.2 M
Transaction Summary
==================================================================================================================================
Install 1 Package(s)
Update 0 Package(s)
Remove 0 Package(s)
Total download size: 1.2 M
Is this ok [y/N]: y
Downloading Packages:
Running rpm_check_debug
Running Transaction Test
Finished Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : httpd [1/1]
Installed: httpd.i386 0:2.2.3-22.el5
Complete!
说明测试成功
以下是拷贝了KABALA的博文,觉得挺详细,就拿出来供大家参考,博文地址:
http://211.89.225.4:82/gate/big5/blog.cnr.cn/?uid-18-action-viewspace-itemid-8099
yum指令
rpm包的更新
檢查可更新的rpm包
#yum check-update
更新所有的rpm包
#yum update
更新指定的rpm包,如更新kernel和kernel source
#yum update kernel kernel-source
大規模的版本升級,與yum update不同的是,連舊的淘汰的包也升級
#yum upgrade
rpm包的安裝和刪除
安裝rpm包,如xmms-mp3
#yum install xmms-mp3
刪除rpm包,包括與該包有倚賴性的包
#yum remove licq
注:同時會提示刪除licq-gnome,licq-qt,licq-text
yum暫存(/var/cache/yum/)的相關參數
清除暫存中rpm包文件
#yum clean packages
清除暫存中rpm頭文件
#yum clearn headers
清除暫存中舊的rpm頭文件
#yum clean oldheaders
清除暫存中舊的rpm頭文件和包文件
#yum clearn 或#yum clearn all
注:相當於yum clean packages + yum clean oldheaders
包列表
列出資源庫中所有可以安裝或更新的rpm包
#yum list
列出資源庫中特定的可以安裝或更新以及已經安裝的rpm包
#yum list mozilla#yum list mozilla*
注:可以在rpm包名中使用匹配符,如列出所有以mozilla開頭的rpm包
列出資源庫中所有可以更新的rpm包
#yum list updates
列出已經安裝的所有的rpm包
#yum list installed
列出已經安裝的但是不包含在資源庫中的rpm包
#yum list extras
注:通過其他網站下載安裝的rpm包
rpm包資訊顯示(info參數同list)
列出資源庫中所有可以安裝或更新的rpm包的資訊
#yum info
列出資源庫中特定的可以安裝或更新以及已經安裝的rpm包的資訊
#yum info mozilla#yum info mozilla*
注:可以在rpm包名中使用匹配符,如列出所有以mozilla開頭的rpm包的資訊
列出資源庫中所有可以更新的rpm包的資訊
#yum info updates
列出已經安裝的所有的rpm包的資訊
#yum info installed
列出已經安裝的但是不包含在資源庫中的rpm包的資訊
#yum info extras
注:通過其他網站下載安裝的rpm包的資訊
搜索rpm包
搜索匹配特定字符的rpm包
#yum search mozilla
注:在rpm包名,包描述等中搜索
搜索有包含特定文件名的rpm包
#yum provides realplay
增加資源庫
例如:增加rpm.livna.org作為資源庫
安裝Livna.org rpms GPG key
#rpm --import http://rpm.livna.org/RPM-LIVNA-GPG-KEY
檢查GPG Key
# rpm -qa gpg-pubkey*
顯示Key資訊
#rpm -qi gpg-pubkey-a109b1ec-3f6e28d5
(注:如果要刪除Key,使用#rpm -e gpg-pubkey-a109b1ec-3f6e28d5)
yum常用的命令
# yum install xxx 安裝xxx軟體
# yum info xxx 查看xxx軟體的資訊
# yum remove xxx 刪除套裝軟體
# yum list 列出套裝軟體
# yum clean 清除緩沖和旧的包
# yum provides xxx 以xxx為關鍵字搜索包(提供的資訊為關鍵字)
# yum search xxx 搜索套裝軟體(以名字為關鍵字)
# yum groupupdate xxx
# yum grouplist xxx
# yum groupremove xxx
這三個都是一組為單位進行升級 列表和刪除的操作。。比如 "Mysql Database"就是一個組會同時操作相關的所有套裝軟體;
# yum update 系統升級
# yum list available 列出所有升級源上的包;
# yum list updates 列出所有升級源上的可以更新包;
# yum list installed 列出已經安裝的包;
# yun update kernel 升級內核;
yum常用的源
1) 自動選擇最快的源
由於yum中有的mirror速度是非常慢的,如果yum選擇了這個mirror,這個時候yum就會非常慢,對此,可以下載fastestmirror插件,它會自動選擇最快的mirror:
#yum install yum-fastestmirror
配置文件:(一般不用動)/etc/yum/pluginconf.d/fastestmirror.conf
你的yum鏡像的速度測試記錄文件:/var/cache/yum/timedhosts.txt
2)使用圖形界面的yum
如果覺得命令行的yum不方便,那麼可以使用圖形化的yumex,這個看起來更方便,因為可以自由地選擇軟體倉庫:
#yum install yumex
然後在系統工具中就可以看到yum extender了。實際上系統自帶的“添加/刪除程式“也可以實現圖形化的軟體安裝,但有些yumex的功能它沒有。
本文出自 “漫游Network-->成就Dream” 博客,请务必保留此出处http://viong.blog.51cto.com/844766/278402
本文出自 51CTO.COM技术博客
发表评论
-
五种常见的 PHP 设计模式
2011-05-11 09:18 684http://www.ibm.com/developerwor ... -
谈技术人员研究方向
2011-04-02 11:12 846(转载) http://timyang.net/categor ... -
做卓有成效的程序员
2011-04-02 11:03 825(转载)http://timyang.net/misc/pro ... -
web2.0图形设计样式指南
2010-05-07 17:20 734http://bbs.mycgs.cn/viewthread. ... -
Discuz!全局变量列表
2010-05-06 13:15 1772http://blog.fufuok.com/Article/ ... -
深入理解C语言指针的奥秘
2010-04-30 17:44 709来源:http://community.csdn.net/Ex ... -
字符,字节和编码
2010-04-30 17:40 706本文来自 http://blog.csdn.n ... -
推荐介绍几款小巧的Web Server程序
2010-04-30 17:37 1699本文来自 http://blog.csdn.n ... -
Linux字符集的修改方法
2010-04-27 12:17 1399用export LANG=zh_CN.UTF-8这样只下次重起 ... -
yum来安装lamp 实站
2010-04-27 10:25 1134apache yum install httpd httpd- ... -
apache2+PHP4.4.1+Mysql4.1.18+GD2+ZendOptimizer (原创)
2010-04-24 13:01 1591apache2+PHP4.4.1+Mysql4.1.18+GD ... -
CentOS 关闭 SELinux
2010-04-23 10:41 5634方法1 使用文本编辑工具打开 /etc/selinux/con ... -
rhel 使用 centos yum 源 实站
2010-04-22 14:23 1410wget centos.ustc.edu.cn/CentOS- ... -
中国科技大学 yum 源
2010-04-22 13:54 1946rpm --import http://mirrors.shl ... -
RHEL 5的yum源的设置
2010-04-22 11:11 1846RHEL 5的yum源的设置 我们市面上买的rhel好多是盗版 ... -
Windows下的Memcache安装
2010-04-22 09:46 2469Windows下的Memcache安装 很多phper不知道如 ... -
RHEL5配置YUM源
2010-04-21 16:27 2361RHEL5 配置YUM源 cd /etc/yum.rep ... -
checkbox 多选
2010-04-19 12:09 968<!DOCTYPE HTML PUBLIC " ... -
mysql 常用命令集合
2010-04-16 08:45 9571、MySQL常用命令 oracle create d ... -
JS的正则表达式
2010-04-15 14:20 660JS的正则表达式 //校验是否全由数字组成 代码 fu ...
相关推荐
在提供的文档 `RedHat_5.3配置YUM_从centos5源与光盘源更新软件.doc` 中,可能详细介绍了如何在Red Hat Enterprise Linux 5.3版本上配置YUM源,包括从CentOS 5的网络源和光盘源进行软件更新。阅读这份文档将有助于...
5. **登录与系统更新** 使用root账号登录,执行`yum update`更新系统,并创建一个下载目录,下载ispCP的安装包并解压缩。 6. **安装额外模块** 下载并安装ispCP需要但不在官方源中的模块,例如通过`yum install`...
根据提供的文件信息,本文将详细解析 Red Hat Linux CentOS 5 Cluster Administration 的配置与管理方法,同时探讨相关的基础知识、工具及注意事项等内容。 ### 配置与管理 Red Hat 集群系统概述 #### 配置基础 *...
在CentOS 6.5中,默认的OpenSSH版本可能是5.3,然而,为了提高安全性,通常建议定期更新到最新稳定版本。在这个情况下,我们需要将OpenSSH从5.3升级到7.9p1。下面将详细介绍这个过程。 首先,确保系统已经更新到...
8. **伪装发行版**: CentOS 5.3未经Oracle认证,但你可以通过修改`/etc/redhat-release`文件暂时将系统标识为Red Hat 4,以便于安装。安装完成后记得恢复原样。 9. **开始安装**: 切换到`oracle`用户,设置合适的...
### Oracle 11g 在 CentOS 6.5 上的安装指南 #### 1. 前言 本文档提供了一套全面的指南,用于在 CentOS 6.5 64位操作系统上安装 Oracle 11g 数据库。该指南同样适用于其他基于 Red Hat 的操作系统,如 Red Hat ...
教程名称:RedHat Linux基础小结视频教程41集课程目录:【】CentOS 5.3 下配置本地的YUM源【】Linux 磁盘配额管理1【】Linux 磁盘配额管理2【】Linux下RAID和LVM综合实战【】Linux下RAID磁盘介绍 1【】Linux下RAID...
- **安装RedHat/CentOS**:通过光盘或USB进行安装,按照向导提示完成安装过程。 - 安装过程中可以选择语言、时区、键盘布局等配置选项。 **1.4 系统登录** - **第一次登录设置**:设置初始密码等。 - **使用图形...