yum的基本使用

2021-09-29 05:11:49 字數 1777 閱讀 2127

常用命令

# yum install

安裝指定軟體

# yum remove

解除安裝指定軟體

# yum update

更新指定軟體

# yum info

顯示指定軟體資訊

# yum list

顯示可按照軟體

# yum repolist

顯示已啟用的yum倉庫列表

# yum makecache

構建本地快取

# yum clean all

清理本地快取

如何搭建本地離線yum倉庫

以centos-7環境搭建postgresql10本地yum倉庫為例,如下:

更新postgresql yum源

# yum install

# yum install --downloaddir=/home/pg-yum --downloadonly postgresql10 postgresql10-server postgresql10-libs postgresql10-contrib postgresql10-devel postgis24_10

配置本地倉庫資訊centos-pg.repo

# vim /etc/yum.repos.d/centos-pg.repo

[c7-pg]

name=centos-pg-$releasever

baseurl=file:///home/pg-yum/

gpgcheck=0

enabled=1

[c7-pg]:名稱,yum id,需唯一;

name=centos-pg-$releasever:描述資訊;$releasever:當前發行版本號;

baseurl=file:///home/pg-yum/ :本地倉庫路徑;file:// :表示使用本地檔案協議;

gpgcheck=0 :關閉安全驗證;

enabled=1 :啟用本倉庫;

生成repodata資訊

# createrepo /home/pg-yum/

備註:如果命令createrepo未安裝請先安裝createrepo:# yum -y install createrepo

其他命令:

本地倉庫更新:createrepo --update /home/pg-yum/

檢視倉庫軟體包總數:yum repoinfo c7-pg

至此已完成本地倉庫搭建,可拷貝至離線伺服器下執行postgresql10的安裝操作

# yum install postgresql10-server postgresql10-contrib postgresql10-devel postgis24_10

詳細yum命令學習可前往:linux yum命令

YUM基本使用

1 安裝rpm包 yum install rpm包 2 刪除rpm包,包括與該包有依賴性的包 yum remove 包名 3 檢查可更新的rpm包 yum check update 4 更新所有的rpm包 yum update 5 更新指定的rpm包 yum update 包名 6 大規模的公升級版...

yum的基本使用及其yum倉庫的配置實現

yum history list 列出最近的歷史 yum history info id 列出某次的詳細資訊,yum history undo id 撤銷某次更改 yum history help 檢視幫助 其中 代表軟體名 1.用yum安裝軟體包命令 yum install 2.用yum刪除軟體包...

yum的基本用法

1 安裝rpm包 yum install rpm包2 刪除rpm包,包括與該包有依賴性的包 yum remove 包名3 檢查可更新的rpm包 yum check update4 更新所有的rpm包 yum update5 更新指定的rpm包 yum update 包名6 大規模的公升級版本 yum...