首頁 > 軟體

CentOS yum源 部署

2020-06-16 17:53:25

CentOS安裝yum源

一般的軟體都會提供一個.rpm的軟體包,使用rpm指令安裝了這個包後會自動新增一個yum倉庫源,之後用yum就可以安裝該軟體了。

安裝rpm包

rpm -ivh http://repo.somesite.com/somesoftware.rpm

移除rpm包

rpm -e packagename

EPEL

啥也不說,除了自帶的centos源,估計是必裝的一個源。

介紹

https://Fedoraproject.org/wiki/EPEL/zh-cn

安裝

1、yum安裝

yum install epel-release

根據查詢結果安裝

2、rpm安裝

rpm -ivh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

如果你使用了CentOS6地址改成https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm

RPMForge

介紹

https://wiki.centos.org/AdditionalResources/Repositories/RPMForge

rpm包目錄

http://pkgs.repoforge.org/rpmforge-release/

其他的源介紹(CentOS)

https://wiki.centos.org/AdditionalResources/Repositories

Yum Priorities

如果安裝的源多了,那麼就需要這個外掛了,用於yum命令軟體包搜尋時使用源的優先順序。

安裝

yum install yum-priorities


設定

開啟/etc/yum/pluginconf.d/priorities.conf

vi /etc/yum/pluginconf.d/priorities.conf

確保檔案內包含enabled=1,如果要禁用yum優先順序外掛,改成enabled=0。

[main]
enabled=1

/etc/yum.repos.d/*.repo檔案裡新增優先順序設定。優先順序由 1 ~ 99 的 99 個數表示,1 的優先順序最高。優先順序小的源即使有某軟體的較新版本,如果優先順序高的源中沒有,在啟用該外掛的情況下,系統也無法安裝/升級到該較新版本。

priority=1

更多YUM相關教學見以下內容

RedHat 6.2 Linux修改yum源免費使用CentOS源 http://www.linuxidc.com/Linux/2013-07/87383.htm

設定EPEL YUM源 http://www.linuxidc.com/Linux/2012-10/71850.htm

Redhat 本地yum源設定 http://www.linuxidc.com/Linux/2012-11/75127.htm

yum的組態檔說明 http://www.linuxidc.com/Linux/2013-04/83298.htm

RedHat 6.1下安裝yum(圖文) http://www.linuxidc.com/Linux/2013-06/86535.htm

YUM 安裝及清理 http://www.linuxidc.com/Linux/2013-07/87163.htm

CentOS 6.4上搭建yum本地源 http://www.linuxidc.com/Linux/2014-07/104533.htm

本文永久更新連結地址http://www.linuxidc.com/Linux/2015-09/122919.htm


IT145.com E-mail:sddin#qq.com