IT貓撲網(wǎng):您身邊最放心的安全下載站! 最新更新|軟件分類|軟件專題|手機(jī)版|論壇轉(zhuǎn)貼|軟件發(fā)布

您當(dāng)前所在位置: 首頁(yè)操作系統(tǒng)LINUX → 關(guān)于RedHat 5U3的yum源配置

關(guān)于RedHat 5U3的yum源配置

時(shí)間:2015-06-28 00:00:00 來(lái)源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評(píng)論(1)

  今天我為了在redhat下安裝一個(gè)firefox的flash插件,引出了我對(duì)yum源的配置。用過(guò)ubuntu的spt-get,那個(gè)還是相當(dāng)好用的,不過(guò)是你在選對(duì)源的基礎(chǔ)之上的,什么是源呢,一開(kāi)始我剛接觸源這個(gè)名詞的時(shí)候,很是不理解。不管他是什么東西,能給你解決問(wèn)題是最重要的不是?!你實(shí)際操作之后,源不過(guò)如此,就是像水源的東西,不過(guò)你在源里取到的是你系統(tǒng)里需要的軟件,我的理解可能有一些膚淺,希望朋友們指點(diǎn)。

  yum的配置,比起ubuntu里的apt-get配置起來(lái)可能要麻煩點(diǎn),不過(guò)也只是格式上的不同而已。先就我自身的經(jīng)歷來(lái)說(shuō)一下吧。以前我都是用的光盤(pán)安裝的,就是yum中所用到的本地源的配置。

  1,yum本地源的配置與使用

  a:掛載你的光盤(pán)到一個(gè)目錄下:mount -t iso9660 /dev/cdrom /mnt/cdrom

  b:修改你的yum配置文件:編輯 /etc/yum.repos.d/rhel-debuginfo.repo 文件,里面有給

  [rhel-debuginfo]

  name=Red Hat Enterprise Linux $releasever - $basearch - Debug

  baseurl=file:///mnt/cdrom/Server

  enabled=1

  gpgcheck=0

  gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release

  主要是baseurl,enabled,gpgcheck字段的配置,本地就是要使用file://absolute path.

  保存并退出。

  c:yum update

  這里有想必大家有個(gè)疑問(wèn),光盤(pán)放進(jìn)光驅(qū)后,如果能識(shí)別的話就已經(jīng)自動(dòng)掛載到了/media 下為什么我們還要費(fèi)事手動(dòng)掛載呢?這個(gè)倒是必須的,因?yàn)槟悴粧燧d的話你yum需要的repodata文件是沒(méi)有任何東西的,因?yàn)閥um要去讀這個(gè)文件才會(huì)自動(dòng)給你解決依賴關(guān)系的。

  還有一個(gè)想要與大家一起學(xué)習(xí)的就是,在你沒(méi)有盤(pán),只有iso文件時(shí)怎么辦?很簡(jiǎn)單,一條命令解決 mount -o loop /xx/xx/xxx.iso /mnt/cdrom你可以繼續(xù)了。呵呵~

  2、網(wǎng)絡(luò)源的配置

  這些是我吸取前輩的精華,同樣是修改上面所提到的配置文件里的內(nèi)容:

  [base]

  name=CentOS-5 - Base

  #mirrorlist=http://mirrorlist.centos.org/?release=$releasever5&arch=$basearch&

  repo=os

  #baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/

  baseurl=http://ftp.sjtu.edu.cn/centos/5/os/$basearch/

  gpgcheck=1

  gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5

  #released updates

  [update]

  name=CentOS-5 - Updates

  #mirrorlist=http://mirrorlist.centos.org/?release=4&arch=$basearch&repo=updates

  baseurl=http://ftp.sjtu.edu.cn/centos/5/updates/$basearch/

  gpgcheck=1

  gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5

  #packages used/produced in the build but not released

  [addons]

  name=CentOS-5 - Addons

  #mirrorlist=http://mirrorlist.centos.org/?release=4&arch=$basearch&repo=addons

  baseurl=http://ftp.sjtu.edu.cn/centos/5/addons/$basearch/

  gpgcheck=1

  gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5

  #additional packages that may be useful

  [extras]

  name=CentOS-5 - Extras

  #mirrorlist=http://mirrorlist.centos.org/?release=4&arch=$basearch&repo=extras

  baseurl=http://ftp.sjtu.edu.cn/centos/5/extras/$basearch/

  gpgcheck=1

  gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5

  #additional packages that extend functionality of existing packages

  [centosplus]

  name=CentOS-5 - Plus

  #mirrorlist=http://mirrorlist.centos.org/?release=4&arch=$basearch&repo=centosplus

  baseurl=http://ftp.sjtu.edu.cn/centos/5/centosplus/$basearch/

  gpgcheck=1

  enabled=0

  gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5

  #contrib - packages by Centos Users

  [contrib]

  name=CentOS-5 - Contrib

  #mirrorlist=http://mirrorlist.centos.org/?release=4&arch=$basearch&repo=contrib

  baseurl=http://ftp.sjtu.edu.cn/centos/5/contrib/$basearch/

  gpgcheck=1

  enabled=0

  gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5

  # vi dag.repo

  [dag]

  name=Dag RPM Repository for RHEL5

  baseurl=http://ftp.riken.jp/Linux/dag/redhat/el5/en/$basearch/dag/

  enabled=1

  gpgcheck=1

  gpgkey=http://ftp.riken.jp/Linux/dag/packages/RPM-GPG-KEY.dag.txt

  再者導(dǎo)入key? rpm --import http://ftp.sjtu.edu.cn/centos/5/os/i386/RPM-GPG-KEY-CentOS-5

關(guān)鍵詞標(biāo)簽:RedHat 5U3,yum源配置

相關(guān)閱讀

文章評(píng)論
發(fā)表評(píng)論

熱門(mén)文章 安裝紅帽子RedHat Linux9.0操作系統(tǒng)教程 安裝紅帽子RedHat Linux9.0操作系統(tǒng)教程 Tomcat9.0如何安裝_Tomcat9.0環(huán)境變量配置方法 Tomcat9.0如何安裝_Tomcat9.0環(huán)境變量配置方法 多種操作系統(tǒng)NTP客戶端配置 多種操作系統(tǒng)NTP客戶端配置 Linux操作系統(tǒng)修改IP Linux操作系統(tǒng)修改IP

相關(guān)下載

    人氣排行 Linux下獲取CPUID、硬盤(pán)序列號(hào)與MAC地址 dmidecode命令查看內(nèi)存型號(hào) linux tc實(shí)現(xiàn)ip流量限制 安裝紅帽子RedHat Linux9.0操作系統(tǒng)教程 linux下解壓rar文件 lcx.exe、nc.exe、sc.exe入侵中的使用方法 Ubuntu linux 關(guān)機(jī)、重啟、注銷 命令 查看linux服務(wù)器硬盤(pán)IO讀寫(xiě)負(fù)載