解决CentOS下的conflicts with file from错误.

本文详细介绍了如何解决使用yum安装MySQL时遇到的冲突文件问题,包括使用rpm命令忽略错误和卸载冲突包的方法。通过具体实例演示了解决步骤,帮助读者顺利完成MySQL的安装。
部署运行你感兴趣的模型镜像

首先,根据我自己搜索查到的有关于这个 ‘conflicts with file from package’错误的发生一般有两种情况。

第一种是在使用rpm安装的时候。网上有相关的解决方法

https://www.centos.org/docs/5/html/5.1/Deployment_Guide/s3-rpm-conflicting-files.html

To make RPM ignore this error, use the --replacefiles option:

rpm -ivh --replacefiles foo-1.0-1.i386.rpm

就是在rpm -ivh 的命令后面加上 --replacefiles 这个参数。

 

第二种情况,是我自己遇到的,在yum 安装到时候。

错误:

'''

# yum install mysql

Loaded plugins: fastestmirror, refresh-packagekit, security

Setting up Install Process

Loading mirror speeds from cached hostfile

 * base: mirror.neu.edu.cn

 * extras: centos.ustc.edu.cn

 * updates: ftp.sjtu.edu.cn

http://downloads.paradigm4.com/centos6.3/14.12/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"

Trying other mirror.

Package mysql is obsoleted by mysql-community-client, trying to install mysql-community-client-5.5.48-2.el6.x86_64 instead

Resolving Dependencies

--> Running transaction check

---> Package MySQL-client.x86_64 0:5.5.48-1.linux2.6 will be obsoleted

---> Package mysql-community-client.x86_64 0:5.5.48-2.el6 will be obsoleting

--> Processing Dependency: mysql-community-libs(x86-64) = 5.5.48-2.el6 for package: mysql-community-client-5.5.48-2.el6.x86_64

--> Running transaction check

---> Package MySQL-shared.x86_64 0:5.5.48-1.el6 will be obsoleted

---> Package mysql-community-libs.x86_64 0:5.5.48-2.el6 will be obsoleting

--> Processing Dependency: mysql-community-common(x86-64) = 5.5.48-2.el6 for package: mysql-community-libs-5.5.48-2.el6.x86_64

---> Package mysql-libs.x86_64 0:5.1.73-5.el6_6 will be obsoleted

--> Processing Dependency: libmysqlclient.so.16()(64bit) for package: 2:postfix-2.6.6-6.el6_5.x86_64

--> Processing Dependency: libmysqlclient.so.16(libmysqlclient_16)(64bit) for package: 2:postfix-2.6.6-6.el6_5.x86_64

--> Running transaction check

---> Package mysql-community-common.x86_64 0:5.5.48-2.el6 will be installed

---> Package mysql-community-libs-compat.x86_64 0:5.5.48-2.el6 will be obsoleting

---> Package postfix.x86_64 2:2.6.6-6.el6_5 will be updated

---> Package postfix.x86_64 2:2.6.6-6.el6_7.1 will be an update

--> Finished Dependency Resolution


Dependencies Resolved


=============================================================================================================================

 Package                                Arch              Version                         Repository                    Size

=============================================================================================================================

Installing:

 mysql-community-client                 x86_64            5.5.48-2.el6                    mysql55-community             14 M

     replacing  MySQL-client.x86_64 5.5.48-1.linux2.6

 mysql-community-libs                   x86_64            5.5.48-2.el6                    mysql55-community            1.7 M

     replacing  MySQL-shared.x86_64 5.5.48-1.el6

     replacing  mysql-libs.x86_64 5.1.73-5.el6_6

 mysql-community-libs-compat            x86_64            5.5.48-2.el6                    mysql55-community            1.6 M

     replacing  mysql-libs.x86_64 5.1.73-5.el6_6

Installing for dependencies:

 mysql-community-common                 x86_64            5.5.48-2.el6                    mysql55-community            277 k

Updating for dependencies:

 postfix                                x86_64            2:2.6.6-6.el6_7.1               updates                      2.0 M


Transaction Summary

=============================================================================================================================

Install       4 Package(s)

Upgrade       1 Package(s)


Total size: 20 M

Is this ok [y/N]: y

Downloading Packages:

Running rpm_check_debug

Running Transaction Test



Transaction Check Error:

  file /usr/bin/mysql_config from install of mysql-community-client-5.5.48-2.el6.x86_64 conflicts with file from package MySQL-devel-5.5.48-1.el6.x86_64


Error Summary

-------------

'''

这是因为在之前的用rpm的安装包安装了一次,结果发现不行,然后换成修改yum的源的方法安装,出现了这样的错误。

 

 

解决方案:

 #yum -y remove MySQL-devel-5.5.48-1.el6.x86_64


上面那个绿色的部分原封不动复制下来就OK。

这样就卸了那个发生冲突的部分了。

 

结果:

# yum -y remove MySQL-devel-5.5.48-1.el6.x86_64

Loaded plugins: fastestmirror, refresh-packagekit, security

Setting up Remove Process

Resolving Dependencies

--> Running transaction check

---> Package MySQL-devel.x86_64 0:5.5.48-1.el6 will be erased

--> Finished Dependency Resolution


Dependencies Resolved


=============================================================================================================================

 Package                        Arch                      Version                         Repository                    Size

=============================================================================================================================

Removing:

 MySQL-devel                    x86_64                    5.5.48-1.el6                    installed                     20 M


Transaction Summary

=============================================================================================================================

Remove        1 Package(s)


Installed size: 20 M

Downloading Packages:

Running rpm_check_debug

Running Transaction Test

Transaction Test Succeeded

Running Transaction

Warning: RPMDB altered outside of yum.

  Erasing    : MySQL-devel-5.5.48-1.el6.x86_64                                                                           1/1 

  Verifying  : MySQL-devel-5.5.48-1.el6.x86_64                                                                           1/1 


Removed:

  MySQL-devel.x86_64 0:5.5.48-1.el6                                                                                          

 

Complete!

 

接下来安装就没有冲突了

您可能感兴趣的与本文相关的镜像

Qwen-Image-Edit-2509

Qwen-Image-Edit-2509

图片编辑
Qwen

Qwen-Image-Edit-2509 是阿里巴巴通义千问团队于2025年9月发布的最新图像编辑AI模型,主要支持多图编辑,包括“人物+人物”、“人物+商品”等组合玩法

Transaction check error: file /usr/share/mysql/charsets/Index.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/README from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/armscii8.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/ascii.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/cp1250.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/cp1251.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/cp1256.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/cp1257.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/cp850.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/cp852.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/cp866.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/dec8.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/geostd8.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/greek.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/hebrew.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/hp8.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/keybcs2.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/koi8r.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/koi8u.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/latin1.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/latin2.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/latin5.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/latin7.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/macce.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/macroman.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /usr/share/mysql/charsets/swe7.xml from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-common-5.7.18-1.el5.x86_64 file /etc/my.cnf from install of MariaDB-common-10.5.26-1.el7.centos.x86_64 conflicts with file from package mysql-community-server-5.7.18-1.el5.x86_64 错误概要 -------------
06-07
warning: ncurses-base-5.9-14.20130511.el7_4.noarch.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY Verifying... ################################# [100%] Preparing... ################################# [100%] package ncurses-base-6.1-7.20180224.el8.noarch (which is newer than ncurses-base-5.9-14.20130511.el7_4.noarch) is already installed file /usr/share/terminfo/A/Apple_Terminal from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/E/Eterm from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/E/Eterm-256color from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/E/Eterm-88color from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/E/Eterm-color from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/a/aterm from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/c/cygwin from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/g/gnome from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/g/gnome-256color from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/h/hurd from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/j/jfbterm from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/k/kon from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/k/kon2 from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/k/konsole from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/k/konsole-256color from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/l/linux from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/m/mlterm from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/m/mrxvt from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/n/nsterm from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/n/nxterm from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/p/putty from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/p/putty-256color from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/r/rxvt from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/r/rxvt-16color from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/r/rxvt-256color from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/r/rxvt-88color from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/r/rxvt-basic from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/r/rxvt-color from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/r/rxvt-cygwin from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/r/rxvt-cygwin-native from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/r/rxvt-unicode from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/r/rxvt-xpm from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/s/screen from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/s/screen-16color from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/s/screen-256color from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/s/screen.Eterm from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/s/screen.gnome from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/s/screen.konsole from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/s/screen.linux from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/s/screen.mlterm from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/s/screen.mrxvt from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/s/screen.rxvt from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/s/screen.teraterm from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/s/screen.vte from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/s/screen.xterm-new from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/s/screen.xterm-r6 from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/s/screen.xterm-xfree86 from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/s/st from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/s/st-16color from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/s/st-256color from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/t/teraterm from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/t/teraterm2.3 from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/v/vs100 from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/v/vt100 from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/v/vt100-am from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/v/vt100-nav from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/v/vt102 from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/v/vte from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/v/vte-256color from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/v/vwmterm from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xfce from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-1002 from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-1003 from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-16color from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-24 from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-256color from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-88color from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-8bit from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-basic from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-bold from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-color from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-hp from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-new from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-nic from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-noapp from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-old from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-pcolor from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-r5 from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-r6 from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-sco from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-sun from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-utf8 from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-vt220 from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-xf86-v32 from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-xf86-v33 from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-xf86-v333 from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-xf86-v40 from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-xf86-v43 from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-xf86-v44 from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-xfree86 from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterm-xi from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch file /usr/share/terminfo/x/xterms from install of ncurses-base-5.9-14.20130511.el7_4.noarch conflicts with file from package ncurses-base-6.1-7.20180224.el8.noarch
最新发布
06-14
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值