Erro de programação no aptdaemon, como consertá-lo? [duplicado]

1

Estou tentando instalar alguns aplicativos, como o Skype e o Windows, mas a mesma mensagem de erro continua aparecendo

There seems to be a programming error in aptdaemon, the software that allows you to install/remove software and to perform other package management related tasks.

Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/aptdaemon/worker.py", line 968, in simulate
    trans.unauthenticated = self._simulate_helper(trans)
  File "/usr/lib/python2.7/dist-packages/aptdaemon/worker.py", line 1092, in _simulate_helper
    return depends, self._cache.required_download, \
  File "/usr/lib/python2.7/dist-packages/apt/cache.py", line 235, in required_download
    pm.get_archives(fetcher, self._list, self._records)
SystemError: E:I wasn't able to locate a file for the ttf-mscorefonts-installer package. 

This might mean you need to manually fix this package.

Sou novato no Ubuntu e não consegui consertá-lo. Tentei pesquisar por perguntas semelhantes, mas não consegui corrigi-las.

    
por P.A 05.02.2012 / 14:06

1 resposta

0

Este parece ser o erro:

E:I wasn't able to locate a file for the ttf-mscorefonts-installer package.

Tente reconfigurar os pacotes descompactados primeiro.

sudo dpkg --configure -a

E, em seguida, instale-o:

sudo aptitude install ttf-mscorefonts-installer
    
por Sathya 06.02.2012 / 10:44