não pode acessar "/ sbin / udevd": nenhum arquivo ou diretório

1

Após a atualização 15.10 dist obtive o seguinte erro usando o apt-get?

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
    
por Gert Cuykens 27.12.2015 / 00:14

1 resposta

2

/sbin/udevd não está mais disponível em Wily. Mas os scripts de remoção dos pacotes em sua pergunta parecem depender disso. Tente o seguinte

sudo touch /sbin/udevd; sudo apt-get autoremove --purge; sudo rm /sbin/udevd

Se isso não funcionar, execute

sudo dpkg -r --force-all libboost-iostreams1.55.0 libhiredis0.10 libhogweed2 libicu52 libnettle4 libregexp-common-perl
    
por A.B. 27.12.2015 / 09:31