赞
踩
1、修改/etc/yum.conf
把keepcache=0改成keepcache=1
2、yum安装软件就可以缓存rpm包了
3、包路径保存在/var/cache/yum/x86_64/7/base/packages
cd /yum/ 到rpm包所在目录
createrepo ./
vim /etc/yum.repos.d/local.repo
[local]
name=local
baseurl=file:///yum #repodata目录存在的路径
gpgcheck=0
enabled=1
验证是否配置完成
yum repolist
删除之前的包,重新安装,如果走缓存,清缓存
Yum clean all
Yum makecache
yum install mariadb-5.5.68-1.el7.x86_64.rpm --skip-broken
rpm -ivh --force --nodeps mariadb-5.5.68-1.el7.x86_64.rpm
以上两种安装方式都可以尝试
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。