关于yum的一些安装问题
最近折腾CentOS和kubernetes,遇到一些安装问题,把和yum相关的逐步总结如下:
如何用本地的cdrom作为yum源
- mount /dev/cdrom /mnt
- 先查询是否安装了createrepo的包
rpm -qa | grep createrepo
如果没有的话,转到/mnt/Packages目录下,通过rpm -Uhv createrepo...安装
- 建立一个/etc/yum.repos.d/cdrom.repo文件,内容如下
[cdrom] |
- 查看和安装
yum --disablerepo=* --enablerepo=cdrom list
yum --disablerepo=* --enablerepo=cdrom -y install php-oci php-mstring
解除yum的锁定
在安装的时候经常遇到Another app is currently holding the yum lock; waiting for it to exit…
运行命令
rm -rf /var/run/yum.pid
强行解锁.