自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

CentOS yum源設(shè)定使用方法的整理

系統(tǒng) Linux
我比較喜歡debian的apt,非常方便。以前以為RedHat linux沒這么方便,后來發(fā)現(xiàn)CentOS yum是個(gè)不錯(cuò)的東西。CentOS yum的使用和apt有幾分相似,這樣一來對(duì)于許多包的安裝就方便多了。

CentOS yum更新了很多版本更新,我本人認(rèn)為CentOS yum很好使的文件系統(tǒng),在此向大家推薦CentOS應(yīng)該是做為服務(wù)器的linux的佼佼者。CentOS采用的二進(jìn)制包是rpm,不過包的依賴性解決有時(shí)候卻是個(gè)問題。

我比較喜歡debian的apt,非常方便。以前以為RedHat linux沒這么方便,后來發(fā)現(xiàn)CentOS yum是個(gè)不錯(cuò)的東西。CentOS yum的使用和apt有幾分相似,這樣一來對(duì)于許多包的安裝就方便多了。

這篇文章主要講兩點(diǎn)內(nèi)容,一是CentOS yum使用方法的整理;二是找一個(gè)比較快的國內(nèi)的源,這樣一來,CentOS yum的大體使用過程就解決了。

  1. 1.yum的使用:  
  2. 1)包的更新  
  3. 1.1)檢查可更新包: yum check-update  
  4. 1.2)更新所有包: yum update  
  5. 1.3)更新指定包: yum update package_name  
  6. 1.4)版本升級(jí): yum upgrade  
  7. 2)包安裝與刪除  
  8. 2.1)yum install package_name  
  9. 2.2)yum remove package_name  
  10. 3)包搜索  
  11. 3.1)搜索特定包: yum search package_name  
  12. 3.2)搜索包含特定文件名的包:yum provides name  
  13. 4)包列表  
  14. 4.1)列出所有安裝或更新的包: yum list  
  15. 4.2)列出指定包:yum list name  
  16. 4.3)列出可更新包:yum list updates  
  17. 4.4)列出已安裝包:yum list installed  
  18. 4.5)列出已安裝但不包含在資源庫中的包:yum list extras  

CentOS yum源設(shè)定

  1. 2.1)加快yum下載速度: yum -y install yum-fastestmirror,在CentOs 4上名字叫做yum-plugin-fastestmirror  
  2. 2.2)yum源文件:/etc/yum.repos.d/CentOS-Base.repo  
  3. 2.3)CentOS 5的yum源設(shè)為上海交通大學(xué)網(wǎng)站  
  4. CentOS-Base.repo  
  5. [base]  
  6. name=CentOS-5 - Base  
  7. #mirrorlist=http://mirrorlist.centos.org/?release=$releasever5&arch=$basearch&  
  8. repo=os 
  9. #baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/  
  10. baseurl=http://ftp.sjtu.edu.cn/centos/5.0/os/$basearch/  
  11. gpgcheck=1 
  12. gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5  
  13.  
  14. #released updates  
  15. [update]  
  16. name=CentOS-5 - Updates  
  17. #mirrorlist=http://mirrorlist.centos.org/?release=4&arch=$basearch&repo=updates 
  18. baseurl=http://ftp.sjtu.edu.cn/centos/5.0/updates/$basearch/  
  19. gpgcheck=1 
  20. gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5  
  21.  
  22. #packages used/produced in the build but not released  
  23. [addons]  
  24. name=CentOS-5 - Addons  
  25. #mirrorlist=http://mirrorlist.centos.org/?release=4&arch=$basearch&repo=addons 
  26.  
  27. baseurl=http://ftp.sjtu.edu.cn/centos/5.0/addons/$basearch/  
  28. gpgcheck=1 
  29. gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5  
  30.  
  31. #additional packages that may be useful  
  32. [extras]  
  33. name=CentOS-5 - Extras  
  34. #mirrorlist=http://mirrorlist.centos.org/?release=4&arch=$basearch&repo=extras 
  35.  
  36. baseurl=http://ftp.sjtu.edu.cn/centos/5.0/extras/$basearch/  
  37. gpgcheck=1 
  38. gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5  
  39.  
  40. #additional packages that extend functionality of existing packages  
  41. [centosplus]  
  42. name=CentOS-5 - Plus  
  43. #mirrorlist=http://mirrorlist.centos.org/?release=4&arch=$basearch&repo=centosplus 
  44. baseurl=http://ftp.sjtu.edu.cn/centos/5.0/centosplus/$basearch/  
  45. gpgcheck=1 
  46. enabled=0 
  47. gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5  
  48.  
  49. #contrib - packages by Centos Users  
  50. [contrib]  
  51. name=CentOS-5 - Contrib  
  52. #mirrorlist=http://mirrorlist.centos.org/?release=4&arch=$basearch&repo=contrib 
  53. baseurl=http://ftp.sjtu.edu.cn/centos/5.0/contrib/$basearch/  
  54. gpgcheck=1 
  55. enabled=0 
  56. gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5  
  57.  

a.執(zhí)行64位:rpm --import http://ftp.sjtu.edu.cn/centos/5.0/os/x86_64/RPM-GPG-KEY-CentOS-532位:rpm --import http://ftp.sjtu.edu.cn/centos/5.0/os/i386/RPM-GPG-KEY-CentOS-5b.執(zhí)行 yum update.2.4)設(shè)置CentOS yum源為國內(nèi)服務(wù)器

  1. # CentOS-Base.repo  
  2. #  
  3. # This file uses a new mirrorlist system developed by Lance Davis for CentOS.  
  4. # The mirror system uses the connecting IP address of the client and the  
  5. # update status of each mirror to pick mirrors that are updated to and  
  6. # geographically close to the client. You should use this for CentOS updates  
  7. # unless you are manually picking other mirrors.  
  8. #  
  9. # If the mirrorlistdoes not work for you, as a fall back you can try the  
  10. # remarked out baseurlline instead.  
  11. #  
  12. [base]  
  13. name=CentOS-5 - Base  
  14. baseurl=http://mirror.be10.com/centos/5/os/i386/  
  15. gpgcheck=1 
  16. #released updates  
  17. [update]  
  18. name=CentOS-5 - Updates  
  19. baseurl=http://mirror.be10.com/centos/5/updates/i386/  
  20. gpgcheck=1 
  21. #packages used/produced in the build but not released  
  22. [addons]  
  23. name=CentOS-5 - Addons  
  24. baseurl=http://mirror.be10.com/centos/5/addons/i386/  
  25. gpgcheck=1 
  26. #additional packages that may be useful  
  27. [extras]  
  28. name=CentOS-5 - Extras  
  29. baseurl=http://mirror.be10.com/centos/5/extras/i386/  
  30. gpgcheck=1 
  31. #additional packages that extend functionality of existing packages  
  32. [centosplus]  
  33. name=CentOS-5 - Plus  
  34. baseurl=http://mirror.be10.com/centos/5/centosplus/i386/  
  35. gpgcheck=1 
  36. enabled=0 
  37. #contrib - packages by Centos Users  
  38. [contrib]  
  39. name=CentOS-5 - Contrib  
  40. baseurl=http://mirror.be10.com/centos/5/contrib/i386/  
  41. gpgcheck=1 
  42. enabled=0 
  43. #packages in testing  
  44. [testing]  
  45. name=CentOS-5 - Testing  
  46. baseurl=http://mirror.be10.com/centos/5/testing/i386/  
  47. gpgcheck=1 
  48. enabled=0 

a.執(zhí)行:rpm --import http://mirror.be10.com/centos/RPM-GPG-KEY-CentOS-5
3.這一篇文章只是就yum的基本使用進(jìn)行整理,尚有許多未涉及到的地方。不過基本的使用已經(jīng)足夠。

【編輯推薦】

  1. CentOS yum內(nèi)核編譯前需要支持升級(jí)內(nèi)核
  2. CentOS yum鏡像速度測(cè)試記錄文件
  3. CentOS yum倉庫使用 ISO 文件制作
  4. CentOS yum服務(wù)器安裝與使用命令
  5. CentOS yum配置安裝軟件與配置文件修改
責(zé)任編輯:佚名 來源: CSDN
相關(guān)推薦

2010-02-22 18:46:31

2010-01-13 14:09:33

CentOS yum使

2021-09-03 07:47:58

CentOS 7yum源

2012-09-06 11:40:00

CentOS 6.2yum

2010-03-29 15:18:52

CentOS系統(tǒng)

2010-02-23 15:32:51

2011-07-07 10:39:10

yum源createrepo

2010-04-02 10:13:43

CentOS系統(tǒng)

2010-02-23 10:58:47

CentOS NTFS

2012-01-13 09:55:54

jQuery

2011-02-24 13:09:10

FireFTP

2010-02-03 10:00:29

Linux YUM

2011-03-09 15:32:57

2013-07-15 15:12:40

iOS多線程NSOperationNSOperation

2009-12-02 16:04:44

PHP fsockop

2009-12-24 16:36:06

WPF InkCanv

2010-10-08 16:01:17

mysql UPDAT

2010-03-29 16:28:01

CentOS系統(tǒng)

2010-02-23 14:22:36

2011-03-07 09:11:31

Vsftpd檔案
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)