1. 程式人生 > >yum配置簡介

yum配置簡介

作用 保存 erp 配置 ear gpg com 內容 簡單

linux下面安裝各種軟件包都會面臨一個頭痛的問題,就是各種包之間的依賴性。但是有了yum這個工具就輕松多了。下面就對這個工具做一下簡單的介紹說明。

yum工具的作用:解決rpm包安裝時的依賴性

以redhat6中yum配置文件做簡要說明,使用vim打開,文件內容如下所示
vim /etc/yum.repos.d/rhel-source.repo
[rhel-source]
name=Red Hat Enterprise Linux $releasever - $basearch - Source
baseurl=ftp://ftp.redhat.com/pub/redhat/linux/enterprise/$releasever/en/os/SRPMS/


enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release

[rhel-source] yum容器名稱,可隨便定義,但是一定要放在[]內
name=Red Hat Enterprise Linux $releasever - $basearch - Source 容器說明,可自己定義
baseurl=ftp://ftp.redhat.com/pub/redhat/linux/enterprise/$releasever/en/os/SRPMS/ yum源服務器地址
enabled=0 是否啟用該yum源 1啟用 0不啟用


gpgcheck=1 rpm數字證書是否生效 1生效 0不生效
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release 數字證書公鑰保存位置

yum配置簡介