在15.10 dist升级之后,我使用apt获得以下错误?
sudo apt-get autoremove --purge
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages will be REMOVED:
libboost-iostreams1.55.0* libhiredis0.10* libhogweed2* libicu52* libnettle4* libregexp-common-perl*
0 upgraded, 0 newly installed, 6 to remove and 0 not upgraded.
After this operation, 29.2 MB disk space will be freed.
Do you want to continue? [Y/n] y
chmod: cannot access ‘/sbin/udevd’: No such file or directory
E: Problem executing scripts DPkg::Pre-Invoke 'chmod -x /sbin/udevd'
E: Sub-process returned an error code发布于 2015-12-27 08:31:22
/sbin/udevd已不再在Wily中使用。但是问题中的包的删除脚本似乎取决于它。尝试以下几点
sudo touch /sbin/udevd; sudo apt-get autoremove --purge; sudo rm /sbin/udevd如果不起作用,请运行
sudo dpkg -r --force-all libboost-iostreams1.55.0 libhiredis0.10 libhogweed2 libicu52 libnettle4 libregexp-common-perlhttps://askubuntu.com/questions/713746
复制相似问题