yum
1` rpm -q yum
2` 配置yum源 /etc/yum.repos.d
vim 1.repo 文件名要以.repo結尾
[rhel]
name=
baseurl=file:// /mnt
ftp://192.168.0.1/
http://www.redhat.com/source url支持的協議只有三種(http:// ftp:// file://)
enabled=1
gpgcheck=0
mysql
yum list metadata :源數據
yum install dhcp
yum remove dhcp
yum update
yum clean alllinux
[root@localhost ~]# cat /etc/yum.repos.d/rhel-source.repo
[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
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-releasesql
[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-GPG-KEY-redhat-release數據庫
[root@www ~]# vi /etc/yum.repos.d/CentOS-Base.repo vim
[base] centos
name=CentOS-$releasever - Base 緩存
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os ide
#baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/ 工具
gpgcheck=1 url
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5
如上所示,鳥哥僅列出 base 這個容器內容而已,其餘的容器內容請自行查閱囉!上面的數據須要注意的是:
? [base] :表明容器的名字!中刮號必定要存在,裏面的名稱則能夠隨意取。可是丌能有兩個相同的容器名稱,不然 yum 會丌
曉得該到哪裏去找容器相關軟件列表檔案。
? name :只是說明一下這個容器的意丿而已,重要性丌高!
? mirrorlist= :列出這個容器可使用的映射站臺,若是丌想使用,能夠批註到這行;
? baseurl= :這個最重要,由於後面接的就是容器的實際網址!mirrorlist 是由 yum 程序自行去捉映像站臺, baseurl 則是挃
定固定的一個容器網址!咱們剛剛找到的網址放到這裏來啦!
? enable=1 :就是讓這個容器被啓勱。若是丌想啓勱可使用enable=0 喔!
? gpgcheck=1 :還記得RPM 的數字簽名嗎?這就是挃定是否須要查閱 RPM 檔案內的數字簽名!
? gpgkey= :就是數字簽名的公鑰文件所在位置!使用默訃值便可
yum的安裝
第一步:新建一個文件夾,並把光盤內的全部文件複製到這個文件夾裏:
[root@localhost ~]# mkdir /yum
[root@localhost ~]# cp -rvf /misc/cd/* /yum
第二步:備份repodata文件。由於有四個文件夾裏都有這個文件,因此都要備份。
[root@localhost ~]# mv /yum/Server/repodata /yum/Server/repodata.bak
[root@localhost ~]# mv /yum/VT/repodata /yum/VT/repodata.bak
[root@localhost ~]# mv /yum/Cluster/repodata /yum/Cluster/repodata.bak
[root@localhost ~]# mv /yum/ClusterStorage/repodata /yum/ClusterStorage/repodata.bak
第三步:安裝工具包:
[root@localhost ~]# rpm -ivh /yum/Server/createrepo-0.4.11-3.el5.noarch.rpm
第四步:生成倉庫數據庫:
[root@localhost ~]# createrepo -g /yum/Server/repodata.bak/comps-rhel5-server-core.xml /yum/Server/
[root@localhost ~]# createrepo -g /yum/VT/repodata.bak/comps-rhel5-vt.xml /yum/VT/
[root@localhost ~]# createrepo -g /yum/Cluster/repodata.bak/ /yum/Cluster
[root@localhost ~]# createrepo -g /yum/ClusterStorage/repodata.bak/comps-rhel5-cluster-st.xml /yum/ClusterStorage/
第五步:查看倉庫數據文件:
[root@localhost ~]# ls /yum/Server/repodata/
comps-rhel5-server-core.xml //這個文件軟件包組的分類。
filelists.xml.gz other.xml.gz primary.xml.gz //這三個文件爲軟件包列表文件。
repomd.xml //這個文件爲MD5校驗信息。
在/yum/VT /yum/Cluster /yum/ClusterStorage下面都有這幾個文件,做用和這同樣。若是想更新軟件包,只需把下載完的軟件包放在Server或者其餘三個目錄裏,再使用第四步從新生成數據庫文件便可。
第六步:客戶端配置:主要修改下面紅色的部分:
[root@localhost ~]# cp /etc/yum.repos.d/rhel-debuginfo.repo /etc/yum.repos.d/chenbin.repo
[root@localhost ~]# vi /etc/yum.repos.d/chenbin.repo
[rhel-Server]
name=Red Hat Enterprise Linux $releasever - $basearch - Debug
baseurl=file:///yum/Server
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
[rhel-VT]
name=Red Hat Enterprise Linux $releasever - $basearch - Debug
baseurl=file:///yum/VT
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
[rhel-Cluster]
name=Red Hat Enterprise Linux $releasever - $basearch - Debug
baseurl=file:///yum/Cluster
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
[rhel-ClusterStorage]
name=Red Hat Enterprise Linux $releasever - $basearch - Debug
baseurl=file:///yum/ClusterStorage
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
第七步:查看:如圖,已經出現軟件列表了。
若是在上圖中的編輯裏選擇軟件存儲庫,就出現下圖:
若是把這裏的勾去掉,再次打開就沒有軟件列表了,同時在/etc/yum.repos.d/chenbin.repo配置文件下的enabled=0。 清除一下yum安裝時的緩存:[root@localhost ~]# yum clean all 安裝一個軟件試試:[root@localhost ~]# rpm -ivh /yum/Server/httpd-2.2.3-22.el5.i386.rpmwarning: /yum/Server/httpd-2.2.3-22.el5.i386.rpm: Header V3 DSA signature: NOKEY, key ID 37017186error: Failed dependencies: libapr-1.so.0 is needed by httpd-2.2.3-22.el5.i386 libaprutil-1.so.0 is needed by httpd-2.2.3-22.el5.i386 由於依賴關係,因此不能安裝。用以下命令安裝:[root@localhost ~]# yum install /yum/Server/httpd-2.2.3-22.el5.i386.rpm系統會自動安裝完成。Yum缷載以下:[root@localhost ~]# yum remove httpd。 第二種方法:第一步:同上,建立一個新文件夾,並把光盤的內容所有複製到該文件夾內:[root@localhost ~]# mkdir /yum[root@localhost ~]# cp -rvf /misc/cd/* /yum 第二步:安裝工具包:[root@localhost ~]# rpm -ivh /yum/Server/createrepo-0.4.11-3.el5.noarch.rpm 第三步:生成倉庫數據庫:[root@localhost ~]# cd /yum[root@localhost yum]# createrepo . //注意後面的. 第四步:查看文件:文件做用同上:[root@localhost yum]# ls /yum/repodata/filelists.xml.gz other.xml.gz primary.xml.gz repomd.xml 第五步:客戶端配置:[root@localhost ~]# cp /etc/yum.repos.d/rhel-debuginfo.repo /etc/yum.repos.d/chenbin.repo[root@localhost ~]# vi /etc/yum.repos.d/chenbin.repo [rhel-chenbin]name=Red Hat Enterprise Linux $releasever - $basearch - Debugbaseurl=file:///yum/enabled=1gpgcheck=1gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release 清除yum安裝時的緩存:[root@localhost ~]# yum clean all 至此,yum安裝完成,但使用這種方法安裝後在應用程序-添加刪除軟件的列表是空的,但使用yum安裝軟件是能夠的。[root@localhost ~]# yum install /yum/Server/httpd-2.2.3-22.el5.i386.rpm[root@localhost ~]# yum remove httpd 第三種方法:首先把光盤放入光驅內:而後複製配置文件:[root@localhost ~]# cp /etc/yum.repos.d/rhel-debuginfo.repo /etc/yum.repos.d/chenbin.repo最後編輯配置文件:[root@localhost ~]# vi /etc/yum.repos.d/chenbin.repo [rhel-Server]name=Red Hat Enterprise Linux $releasever - $basearch - Debugbaseurl=file:///misc/cd/Serverenabled=1gpgcheck=1gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release[rhel-VT]name=Red Hat Enterprise Linux $releasever - $basearch - Debugbaseurl=file:///misc/cd/VTenabled=1gpgcheck=1gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release[rhel-Cluster]name=Red Hat Enterprise Linux $releasever - $basearch - Debugbaseurl=file:///misc/cd/Clusterenabled=1gpgcheck=1gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release[rhel-ClusterStorage]name=Red Hat Enterprise Linux $releasever - $basearch - Debugbaseurl=file:///misc/cd/ClusterStorageenabled=1gpgcheck=1gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release 清除緩存:[root@localhost ~]# yum clean all 這種方法安裝後在應用程序-添加刪除軟件裏也有列表。一樣可使用yum安裝缷載 [root@localhost ~]# yum install /misc/cd/Server/httpd-2.2.3-22.el5.i386.rpm[root@localhost ~]# yum remove httpd 若是把光盤拿出後,在應用程序-添加刪除軟件就沒有列表了,只要放入光盤就有。 總結:YUM經常使用命令:1.安裝軟件包: yum install packageyum localinstall package 從本機目錄安裝軟件包yum groupinstall group 安裝某個組件的所有軟件包 2.更新軟件包:yum update packageyum check-update 列出全部可更新的軟件包yum list updates mysql* 查找mysql的更新yum update 更新全部可更新的軟件包yum update mysql* 更新全部mysql的軟件包yum groupupdate group 更新某個組件的全部軟件包yum list 列出全部已安裝和倉庫中可用的軟件包yum list available 列出倉庫中全部可用的軟件包yum list updates 列出倉庫中比當前系統更新的軟件包yum list installed 列出已安裝的軟件包yum list recent 列出新加入倉庫的軟件包yum info 查詢軟件包信息 3.刪除軟件包:yum remove packageyum groupremove group 刪除某個組件的所有軟件包 4.清除軟件包yum clean packages 清除遺留在緩存裏的包文件yum clean metadata 清除遺留在緩存裏的元數據yum clean headers 清除遺留在緩存裏的頭文件yum clean all 清除包文件,元數據,頭文件 5.搜索軟件包:yum search packageyum info package 查找一個軟件包的信息yum list package 列出包含指定信息的軟件包yum list installed 列出已安裝的軟件包yum list extras 列出不是經過軟件倉庫安裝的軟件包yum list *ttp* 列出標題包含ttp的軟件包yum list updates 列出能夠更新的軟件包 6.查找特定文件是由什麼軟件包提供的:yum whatprovides filename例子:yum whatprovides httpd.conf 可用選項–disalberepo=lib 禁用某個軟件倉庫–enalberepo=lib 啓用某個軟件倉庫 -C 禁用使用本機緩存的元數據例子:yum –disalberepo=livna|–enalberepo=livna install mplayeryum -C info httpd