Linux系統運維筆記,openEuler-22.03 安裝阿里(aliyun)yum

yi-sheng發表於2024-08-22

Linux系統運維筆記,openEuler-22.03 安裝阿里(aliyun)yum

阿里巴巴開源映象站點:http://mirrors.aliyun.com

yum源理解
yum源倉庫的地址 在/etc/yum.repos.d/,並且只能讀出第一層的repo檔案,yum倉庫的檔案都是以.repo結尾的。
為加快yum下載,我們下載阿里雲的.repo倉庫檔案 ,放到/etc/yum.repos.d/

下載前先備份原本的倉庫檔案
cd /etc/yum.repos.d/
mkdir allbak
mv ./* allbak

新增源配置

dnf config-manager --add-repo=http://mirrors.aliyun.com/openeuler/openEuler-22.03-LTS-SP4/OS/x86_64/
dnf config-manager --add-repo=http://mirrors.aliyun.com/openeuler/openEuler-22.03-LTS-SP4/everything/x86_64/

清空原本yum快取
yum clean all

生成新的阿里雲的yum快取,加速下載預熱資料
yum makecache

測試

yum list #顯示軟體源中所有可用的包

yum list|grep nfs #查詢軟體源中某個包

其它。

一般內網伺服器透過代理上網,內網伺服器修改本地HOST解析,來實現代理上網使用阿里雲的yum

內網伺服器修改本地HOST解析

vi /etc/hosts 編輯HOST檔案
192.18.111.1 mirrors.aliyun.com 新增阿里雲yum域名解析

一些報錯解決方法

有時會出現 nothing to do 或者 no package ntfs-3g available 提示,原因是預設源裡沒有ntfs3g包,可以新增aliyun的epel源來yum安裝
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo #新增epel yum源
curl -o /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo #或者這樣,也是新增epel yum源
yum list|grep ntfs-3g #檢視源裡有沒有ntfs-3g

相關文章