多年来,我作为爱好者管理员解决了许多依赖关系问题:我只是删除了一些包,直到整个事情得到解决,或者(如果后果会很大)等到问题自行解决。
# cat /etc/centos-release
CentOS Linux release 7.8.2003 (Core)
现在我想了解以下内容的含义:
# yum update
Loaded plugins: fastestmirror, replace
Loading mirror speeds from cached hostfile
* base: ...
* epel: ...
* extras: ...
* updates: ...
* webtatic: ...
Resolving Dependencies
--> Running transaction check
---> Package ImageMagick.x86_64 0:6.7.8.9-18.el7 will be updated
--> Processing Dependency: libMagickCore.so.5()(64bit) for package: php72w-pecl-imagick-3.4.3-1.2.w7.x86_64
--> Processing Dependency: libMagickWand.so.5()(64bit) for package: php72w-pecl-imagick-3.4.3-1.2.w7.x86_64
---> Package ImageMagick.x86_64 0:6.9.10.68-3.el7 will be an update
--> Finished Dependency Resolution
Error: Package: php72w-pecl-imagick-3.4.3-1.2.w7.x86_64 (@webtatic)
Requires: libMagickCore.so.5()(64bit)
Removing: ImageMagick-6.7.8.9-18.el7.x86_64 (@base)
libMagickCore.so.5()(64bit)
Updated By: ImageMagick-6.9.10.68-3.el7.x86_64 (base)
Not found
Error: Package: php72w-pecl-imagick-3.4.3-1.2.w7.x86_64 (@webtatic)
Requires: libMagickWand.so.5()(64bit)
Removing: ImageMagick-6.7.8.9-18.el7.x86_64 (@base)
libMagickWand.so.5()(64bit)
Updated By: ImageMagick-6.9.10.68-3.el7.x86_64 (base)
Not found
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
我想系统ImageMagick.x86_64
将从0:6.7
to更新,0:6.9
但它无法做到。然后我的猜测:删除0:6.7
会删除libMagickCore.so.5
,但最后一个是需要的php72w-pecl-imagick-3.4.3-1.2.w7.x86_64
……那为什么不直接留libMagickCore.so.5
在系统中呢?可能是因为需要一个新的,但我看不出是哪一个......
我真的不明白幕后发生了什么。