亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

CentOs yum configuration

系統(tǒng) 1647 0

These days? I install a CentOs? but I can't input in Chinese .This make me upset.Then I know it's the problem of yum.Then I changed the yum source.

第1步

wget http:// mirrors . ustc.edu.cn/centos/CentOS-Base. 5 . mirrors .repo -O /etc/yum.repos.d/CentOS-Base.repo


備份yum配置文件,修改yum配置文件。

cp /etc/yum.repos.d/CentOS-Base.repo CentOS-Base.repo_bak
vi /etc/yum.repo.d/CentOS-Base.repo
可以用中科大(ustc)yum源,也可以用上海交大(sjtu)yum源,兩者只能選一個。
用下面的內容覆蓋CentOS-Base.repo就行了。

#中科大(ustc)yum源,http://centos.ustc.edu.cn/centos/5/就是最新的,
#也可以設置成http://centos.ustc.edu.cn/centos/5.5/

[base]
name=CentOS-5 - Base
baseurl=http://centos.ustc.edu.cn/centos/5/os/$basearch/
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5

#released updates
[update]
name=CentOS-5 - Updates
baseurl=http://centos.ustc.edu.cn/centos/5/updates/$basearch/
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5

#packages used/produced in the build but not released
[addons]
name=CentOS-5 - Addons
baseurl=http://centos.ustc.edu.cn/centos/5/addons/$basearch/
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5

#additional packages that may be useful
[extras]
name=CentOS-5 - Extras
baseurl=http://centos.ustc.edu.cn/centos/5/extras/$basearch/
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5

#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-5 - Plus
baseurl=http://centos.ustc.edu.cn/centos/5/centosplus/$basearch/
gpgcheck=1
enabled=0
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5

#contrib - packages by Centos Users
[contrib]
name=CentOS-5 - Contrib
baseurl=http://centos.ustc.edu.cn/centos/5/contrib/$basearch/
gpgcheck=1
enabled=0
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5

#第一部分結束

#============分割線============ 注意,上下兩部分只選一個

# sjtu yum源,http://ftp.sjtu.edu.cn/centos/5/就是最新的,
#也可以設置成http://ftp.sjtu.edu.cn/centos/5.5/

[base]
name=CentOS-5 - Base
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
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
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
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
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
baseurl=http://ftp.sjtu.edu.cn/centos/5/contrib/$basearch/
gpgcheck=1
enabled=0
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5

#第二部分結束

第2步

中科大(ustc)yum源
32位: rpm --import http://centos.ustc.edu.cn/centos/5/os/i386/RPM-GPG-KEY-CentOS-5
64位: rpm --import http://centos.ustc.edu.cn/centos/5/os/x86_64/RPM-GPG-KEY-CentOS-5

上海交大(sjtu)yum源
32位: rpm --import http://ftp.sjtu.edu.cn/centos/5/os/i386/RPM-GPG-KEY-CentOS-5
64位: rpm --import http://ftp.sjtu.edu.cn/centos/5/os/x86_64/RPM-GPG-KEY-CentOS-5

第3步

yum update

After that if you have a proble like that.Do like this:

每次yum install 時總是出現如下錯誤

Trying other mirror.
Error: Cannot retrieve repository metadata (repomd.xml) for repository: extras. Please verify its path and try again

此時聰明的我馬上想到了是不是服務器解析不了域名了,導致repomd.xml下載不下來呢?

然后我就ping了一下mirrors.ustc.edu.cn , 果然出現錯誤:ping: unknown host?mirrors.ustc.edu.cn。顯然是DNS配置問題了,DNS域名服務器IP地址配的不對。

把/etc/hosts里面 加了一行

mirrors.ustc.edu.cn? 202.38.95.110

這樣就可以解析mirrors.ustc.edu.cn了。yum成功!

小記:但是這不是解決這種問題最終辦法。需要配置正確的DNS。方法是:打開/etc/resolv.conf 文件,加入一行 nameserver?ip。此處把ip換成IDC運營商給的DNS的地址就可以了。

CentOs yum configuration


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發(fā)表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 波多野结衣中文字幕一区二区三区 | 四虎影视在线永久免费观看 | 黄色录像日本 | 四虎国产精品免费久久麻豆 | 亚洲精品无码不卡在线播放he | 亚洲一区欧美日韩 | 一区二区三区在线视频播放 | 色九九| 91久久亚洲最新一本 | 色天天综合久久久久综合片 | 婷婷综合激情五月中文字幕 | 性成人动作片在线看 | 久章草在线 | 操操碰| 久久久久日韩精品无 | 精品国产视频 | 91精品国产福利尤物免费 | 一级片看看| 国内精品久久久久影院6 | 亚洲乱强伦 | 人人艹在线| 一区精品在线 | 在线成人天天鲁夜啪视频 | 天天干在线免费视频 | 伊人色院成人蜜桃视频 | 草免费视频 | 狠狠操综合网 | 一区二区三区国产精品 | 欧美亚洲欧美日韩中文二区 | 精品一区二区三区四区 | 色吧综合| 2020亚洲欧美日韩在线观看 | 高清国产精品入口麻豆 | 国产第一页久久亚洲欧美国产 | 亚洲精品在线网站 | 最新亚洲精品国自产在线观看 | 久久中文字幕在线 | 中文精品99久久国产 | 成人毛片国产a | 中文字幕一区二区三区永久 | 久久久久女人精品毛片九一 |