rhel9.2離線下載安裝包,並安裝

昵称昵称昵称發表於2024-06-25

linux離線下載安裝包

[root@localhost local]# mkdir files
#建立資料夾
[root@localhost local]# cd files
[root@localhost files]# pwd
/usr/local/files


#檢視下載資料夾路徑
[root@localhost files]# dnf install --downloadonly --downloaddir=/usr/local/files vim gcc gcc-c++ glibc make autoconf openssl openssl-devel pcre-devel pam-devel zlib-devel libedit-devel perl-IPC-Cmd wget tar lrzsz nano
#下載安裝包到離線資料夾

[root@localhost files]# ls

我們可以看到所有的RPM都已經下載到指定的資料夾,只要把對應的RPM上傳到不能上網的伺服器上,進行RPM安裝

上傳完以後,執行下面命令,升級安裝。
rpm -Uvh ./*.rpm --nodeps --force
# 安裝所有rpm依賴包


或使用下面命令直接安裝
rpm -ivh *.rpm --nodeps --force

相關文章