我正在运行最新的 Debian (Stretch/9.3.x) 并准备我的系统以安装最新的 PHP。我删除了所有预安装的 PHP 包,除了php-common
.
调用apt-get remove php-common
时出现如下错误
Removing php-common (1:49) ...
Failed to stop phpsessionclean.timer: Unit phpsessionclean.timer not loaded.
dpkg: error processing package php-common (--remove):
subprocess installed pre-removal script returned error exit status 5
/usr/bin/deb-systemd-helper: error: unable to read phpsessionclean.timer
Failed to get unit file state for phpsessionclean.timer: No such file or directory
phpsessionclean.timer is a disabled or a static unit, not starting it.
Errors were encountered while processing:
php-common
E: Sub-process /usr/bin/dpkg returned an error code (1)
经过一番挖掘,我试着dpkg --purge php-common
得到这个
Removing php-common (1:49) ...
Failed to stop phpsessionclean.timer: Unit phpsessionclean.timer not loaded.
dpkg: error processing package php-common (--purge):
subprocess installed pre-removal script returned error exit status 5
/usr/bin/deb-systemd-helper: error: unable to read phpsessionclean.timer
Failed to get unit file state for phpsessionclean.timer: No such file or directory
phpsessionclean.timer is a disabled or a static unit, not starting it.
Errors were encountered while processing:
php-common
其实也是一样的安静。
dpkg --verify php-common
??5?????? /lib/systemd/system/phpsessionclean.service
??5?????? /lib/systemd/system/phpsessionclean.timer
这些文件真的不见了。但目前我不知道如何解决这个问题。没有帮助apt-get -f purge
nor dpkg --remove --force-all
。
正如@GAD3R 所提到的,我编辑了
并删除了整个
php-common
条目。之后我跑
更新/(dist-)升级现在运行良好。
编辑 (2018-01-09)
我擦除所有默认 php 包的目的是安装 PHP 7.2。虽然该
php-common
软件包是一个依赖项,但它已被重新安装,但现在phpsessionclean.service
也可以正常工作。编辑 (2018-01-09)
在我的系统中挖掘其他损坏的包时,我发现了这篇文章
https://raphaelhertzog.com/2011/02/21/debian-cleanup-tip-4-find-broken-packages-and-reinstall-them/
并重新安装所有找到的软件包。但是有
colord
一个缺少colord.service
. 所以我做了这里提到的同样的事情,它就像一个魅力。