CentOS如果更改yum更新源詳解

2022-09-26 16:18:22 字數 1747 閱讀 3818

前言

大家都知道centos 有個很方便的軟體安裝工具  yum,但是預設安裝完cen程式設計客棧tos,系統裡使用的是國外的centos更新源,這就造成了我們使用預設更新源安裝或者更新軟體時速度很慢的問題。

為了使用yum工具能快速的安裝更新軟體,我們需要將預設的yum更新源配置為國內的更新源。yum更新源配置檔案位於centos目錄  /etc/yum.repos.d/  下。

首先提供幾個國內快速的更新源:

教育網資源:

1 上海交大:

伺服器位於北京,中國教育網網路中心,**速度高達十m。

北方使用者與教育網使用者推薦,速度飛快。

需要手動建立 centos-base.repo檔案。

2 中國科技大學:

伺服器位於合肥。 南方使用者推薦。 同樣的,cenos版本非常豐富,適合長期使用。

非教育網資源:

1 sohu的開源映象伺服器:

伺服器位於山東省聯通

2 網易的開源服務jbuafyktj器映象:

速度也不錯,全國使用者推薦

總之,大家在使用前可以 ping 一下一上更新源,看哪個快就用哪個。

centos-base.repo檔案示例,這個檔案在這個目錄下  /etc/yum.repos.d/

[base]

name=centos-$releasever - base

baseurl=/6.4/os/$basearch/

gpgcheck=1

gpgkey=/rpm-gpg-key-centos-6

[updates]

name=centos-$releasever - updates

baseurl=/6.4/updates/$basearch/

gpgcheck=1

gpgkey=/rpm-gpg-key-centos-6

[addons]

name=centos-$releasever - addons

baseurl=/$releasever/addons/$basearch/

gpgcheck=1

gpgkey=/rpm-gpg-key-centos-6

[extras]

name=centos-$releasever - extras

baseurl=/6.4/extras/$basearch/

gpgcheck=1

gpgkey=/rpm-gpg-key-centos-6

[centosplus]

name=centos-$releasever - plus

baseurl=/6.4/centosplus/$basearch/

gpgcheck=1

enabled=0

gpgkey=/rpm-gpg-key-cewww.cppcns.comntos-6

從以上配置檔案可以看出,需要根據各家源情況 有選擇的配置[base]  [updates]  [addons]  [extras]  [centosplus]這幾項。

每一項只要修改baseurl和gpgkey為相應源位址即可。

以上配置結束之後,要清空yum 快取,並重建yum快取,執行以下命令:

yum clean all && yum clean metadata && yum clean dbcache && yum makecache && yum update

總結本文標題: centos如果更改yum更新源詳解

本文位址: /os/linux/167646.html

CentOS更改yum源與更新系統

檢視yum快取配置 cat etc yum.conf main keepcache 0 快取是否儲存,1儲存,0不儲存。debuglevel 2 除錯級別 0 10 預設為2 具體除錯級別的應用,我也不了解 logfile var log yum.log yum的日誌檔案所在的位置 exactarc...

CentOS更改yum源與更新系統

1 首先備份 etc yum.repos.d centos base.repo mv etc yum.repos.d centos base.repo etc yum.repos.d centos base.repo.backup 2 進入yum源配置檔案所在資料夾 root localhost y...

CentOS 7更改yum源與更新系統

在centos 7下更改yum源與更新系統。1 首先備份 etc yum.repos.d centos base.repo cp etc yum.repos.d centos base.repo etc yum.repos.d centos base.repo.backup 2 進入yum源配置檔案...