首页 > 系统相关 >CentOS 的 YUM安装时卡死解决方案

CentOS 的 YUM安装时卡死解决方案

时间:2022-11-06 18:34:42浏览次数:46  
标签:CentOS RPM data YUM install yum 卡死 packages rpm


YUM是基于RPM的软件包管理器

YUM is an RPM-based package manager


补充说明

Supplementary note


yum命令 是在Fedora和RedHat以及SUSE中基于rpm的软件包管理器,它可以使系统管理人员交互和自动化地更新与管理RPM软件包,能够从指定的服务器自动下载RPM包并且安装,可以自动处理依赖性关系,并且一次安装所有依赖的软体包,无须繁琐地一次次下载、安装。yum提供了查找、安装、删除某一个、一组甚至全部软件包的命令,而且命令简洁而又好记。

    The yum command is a rpm-based package manager in Fedora, RedHat and SUSE. It enables system administrators to interactively and automatically update and manage RPM packages. It can automatically download and install RPM packages from a specified server, and can be processed automatically Dependency relationship, and install all dependent software packages at one time, no need to download and install tediously again and again. Yum provides commands to find, install, delete a certain, a group or even all packages, and the commands are concise and easy to remember.


问题:

    在使用yum安装时,卡死并且无法Ctrl+c终止,需要将其杀死才能停止。

如下图:

    When using yum to install, it is stuck and cannot be terminated by Ctrl+c. You need to kill it to stop.

As shown below:

CentOS 的 YUM安装时卡死解决方案_sed


解决方案一:

Solution 1:


CentOS 的 YUM安装时卡死解决方案_包管理器_02

   

    删除rpm数据文件后再重建rpm数据文件:

    Rebuild the rpm data file after deleting the rpm data file:


    删除rpm数据文件

    Delete rpm data file

rm -f /var/lib/rpm/__db.00*


重建rpm数据文件

Rebuild rpm data file

rpm -vv --rebuilddb

CentOS 的 YUM安装时卡死解决方案_数据文件_03


清空缓存后再重新缓存

Re-cache after clearing the cache

yum clean all 
yum makecache


执行完一般情况就可以正常使用了,若依旧无法使用请参考以下方式二

After executing the general situation, it can be used normally, if it still cannot be used, please refer to the following method two


解决方案二:

Solution two:

CentOS 的 YUM安装时卡死解决方案_sed_04


将这俩个文件删除后在进行测试

Test after deleting these two files


CentOS 的 YUM安装时卡死解决方案_数据文件_05



CentOS 的 YUM安装时卡死解决方案_数据文件_06


标签:CentOS,RPM,data,YUM,install,yum,卡死,packages,rpm
From: https://blog.51cto.com/u_12212643/5827507

相关文章

  • YUM下载全量依赖
        在离线的内网环境下进行安装一些软件的时候会出现依赖不完整的情况,一般情况下会使用如下方式进行下载依赖包    查看依赖包可以使用yum deplist进行查找[roo......
  • centos系统制作ISO镜像文件
    MondoRescue是什么?MondoRescue(简称Mondo):是一款开源免费的故障恢复和备份工具,可以说是Linux操作系统下的Ghost,你可以轻松地创建系统(Linux或Windows)克隆或备份的IS......
  • CentOS7编译安装haproxy-2.6.6
    创建用户并安装依赖包#selinux会影响haproxy启动,会有'cannotbindUNIXsocket(Permissiondenied)'的报错,请关闭它除非你知道设置selinux规则sed-i'/SELINUX/s/enf......
  • centos下搭建sockets5代理
    #安装依赖及ss5yum-yinstallgccopenldap-develpam-developenssl-develwgethttps://nchc.dl.sourceforge.net/project/ss5/ss5/3.8.9-8/ss5-3.8.9-8.tar.gztar-x......
  • CentOS 8.3 XXX Cluster Initialization Configuration
    一、CentOS8.3XXXClusterInitializationConfiguration1节点规划官方建议节点数量为奇数个hostnameIP节点规划角色maset01192.168.80.31Master01(主节......
  • php:在linux上用sudo提升权限(centos 8 / PHP 7.4.2)
    一,php中查看当前用户: php代码:publicfunctionocr(){$daemon_user=getenv('USERNAME')?:getenv('USER');$script_user=get_current_user......
  • Centos7安装MySQL
    一、卸载系统自带的mariadb1、查看系统自带的mariadbrpm-qa|grepmariadb   2、卸载rpm-e--nodeps mariadb-libs-5.5.68-1.el7.x86_64二、mysql安装1、......
  • CentOS 7(Linux)安装Docker
    CentOS7(Linux)安装Docker一、分别执行下列命令添加并更新yum源    yum update    yuminstallepel-release-y    yumcleanall    y......
  • Centos9网卡配置
    Centos9网卡配置文件已修改,如下[root@bogon~]#cat/etc/NetworkManager/system-connections/ens18.nmconnection[connection]id=ens18uuid=8d1ece55-d999-3c97-866b-d2e......
  • Linux磁盘挂载(CentOS 7)
    例如我们这里挂一个50G的磁盘到服务器首先查看可挂载磁盘情况[root@yanshi/]#fdisk-l磁盘/dev/sda:32.2GB,32212254720字节,62914560个扇区Units=扇区of1......