linux 保留yum安裝後的rpm包

2022-08-30 04:30:16 字數 898 閱讀 9985

[root@bogon ~]#

cat /etc/yum.conf

[main]

cachedir=/var/cache/yum/$basearch/$releasever 【安裝包儲存位置】

keepcache=0 【預設0是不儲存安裝包,改為1即可】

debuglevel=2logfile=/var/log/yum.log

exactarch=1obsoletes=1gpgcheck=1plugins=1installonly_limit=5bugtracker_url=

distroverpkg=centos-release

使用vim或者sed修改

[root@bogon ~]#

sed -n 's#keepcache=0#keepcache=1#gp' /etc/yum.conf

keepcache=1 【最好先不要用-i引數直接修改原始檔,先輸出看修改是否正確,或者先備份yum.conf配置檔案】

[root@bogon ~]#

sed -i 's#keepcache=0#keepcache=1#g' /etc/yum.conf 【-i修改原始檔配置】

[root@bogon ~]#

grep "keepcache" /etc/yum.conf【檢查是否已修改】

keepcache=1

不懂sed的,就使用vim修改

vim /etc/yum.conf

把資料夾下的所有rpm包複製到指定資料夾

cp $(find /var/cache/yum/ -name "

*.rpm

") /root/packages/ #

yum 安裝完成後保留rpm包

想要yum安裝軟體後,還保留安裝包,那麼需要修改 etc yum.conf配置檔案中的keepcache引數。如下 root i2ctl yum.repos.d cat epel.repo epel name extra packages for enterprise linux 7 basearc...

LINUX安裝安裝YUM。

解決 bash yum command not found錯誤 步驟如下 第一步 python iniparse 0.3.1 2.1.el6.noarch.rpm yum metadata parser 1.1.2 14.1.el6.x86 64.rpm yum 3.2.29 69.el6.cent...

yum 安裝nginx 後 nginx的 目錄

nginx預設目錄 輸入命令 whereis nginx即可看到類似於如下的內容 nginx usr sbin nginx usr lib64 nginx etc nginx usr share nginx以下是nginx的預設路徑 1 nginx配置路徑 etc nginx 2 pid目錄 var...