我正在尝试使用以下命令在 CentOS 7(64 位)上安装 LAN Messenger:
yum install lmc-1.2.32-2.i386.rpm
该文件是从下载的https://github.com/lanmessenger/lanmessenger/releases
但我收到以下错误:
Transaction check error:
file /usr/bin from install of lmc-1.2.32-2.i386 conflicts with file from package filesystem-3.2-21.el7.x86_64
file / from install of lmc-1.2.32-2.i386 conflicts with file from package filesystem-3.2-21.el7.x86_64
file /usr/lib from install of lmc-1.2.32-2.i386 conflicts with file from package filesystem-3.2-21.el7.x86_64
有可能解决这个错误吗?
答案1
你需要使用
rpm -ivh --replacefiles foo-1.0-1.i386.rpm
这将用新文件替换那些冲突的文件。
附言。您确实需要在虚拟服务器上执行此操作,而不是首先在生产服务器上执行此操作因为其中有文件/
将被替换,您需要查看其中的哪些文件。