Problema no meu terminal relacionado clamav

0

Recentemente, decidi usar o Avast Antivirus. Eu desinstalei o clamav e instalei o Avast. Agora, sempre que eu uso meu terminal, recebo os seguintes erros:

5 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/1,250 kB of archives.
After this operation, 5,120 B of additional disk space will be used.
Do you want to continue [Y/n]? y
(Reading database ... 
dpkg: warning: files list file for package 'clamav-daemon' missing, assuming package has no files currently installed.
dpkg: warning: files list file for package 'python-pyclamav' missing, assuming package has no files currently installed.
dpkg: warning: files list file for package 'clamav-base' missing, assuming package has no files currently installed.
dpkg: warning: files list file for package 'clamav-freshclam' missing, assuming package has no files currently installed.
dpkg: warning: files list file for package 'libclamav6' missing, assuming package has no files currently installed.
dpkg: warning: files list file for package 'python-clamav' missing, assuming package has no files currently installed.
(Reading database ... 554940 files and directories currently installed.)

Por favor ajude.
obrigado

    
por Hejar Hejar 17.11.2012 / 09:21

1 resposta

0

Acabei de ter o mesmo problema e encontrei a resposta.

A razão para o erro é que um arquivo .list para os aplicativos dados está faltando em / var / lib / dpkg / info /. Você pode instalá-los novamente executando

sudo apt-get remove <package name>

e depois

sudo apt-get install <package name>

ou você pode optar por uma abordagem um pouco mais técnica criando um novo arquivo para cada pacote executando

touch <package name>.list

Por exemplo, isso seria

touch clamav-base.list

Fonte: link

    
por Zilvador 20.12.2012 / 11:21