关于yum的一些安装问题
Posted ericnie的技术博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于yum的一些安装问题相关的知识,希望对你有一定的参考价值。
最近折腾CentOS和kubernetes,遇到一些安装问题,把和yum相关的逐步总结如下:
如何用本地的cdrom作为yum源
- mount /dev/cdrom /mnt
- 先查询是否安装了createrepo的包
rpm -qa | grep createrepo
如果没有的话,转到/mnt/Packages目录下,通过rpm -Uhv createrepo...安装
- 建立一个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
强行解锁.
以上是关于关于yum的一些安装问题的主要内容,如果未能解决你的问题,请参考以下文章