Atualizações falham por causa do fontconfig após a reinstalação do Ubuntu

4

a saída gráfica do meu Ubuntu quebrou, e eu tive que reinstalá-lo. Para manter meus dados e configurações, eu apenas reinstalei de um CD sobre o sistema antigo. Tudo correu bem, além do fato de que recebo erros em todas as atualizações:

stan@stan-ThinkPad-T530:/var/lib/dpkg/info$ sudo apt-get autoremove
Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 to upgrade, 0 to newly install, 0 to remove and 0 not to upgrade.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up fontconfig (2.11.1-0ubuntu6) ...
Regenerating fonts cache... failed.
See /var/log/fontconfig.log for more information.
dpkg: error processing package fontconfig (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 fontconfig
E: Sub-process /usr/bin/dpkg returned an error code (1)

Existem dois problemas (possivelmente ligados?) que estão me incomodando:

  1. 1 not fully installed or removed. na sexta linha. Ele não me diz qual pacote não está totalmente instalado ou removido, e não tenho idéia de como descobrir isso.

  2. O erro causado por fontconfig na última linha. Estou recebendo este erro após cada atualização, pois fontconfig é executado a cada vez.

cat /var/log/fontconfig.log me dá o seguinte:

/usr/share/fonts: caching, new cache contents: 0 fonts, 4 dirs

... a lot of lines with various fonts ...

/usr/share/fonts/type1/gsfonts: caching, new cache contents: 35 fonts, 0 dirs
/usr/share/fonts/type1/mathml: caching, new cache contents: 1 fonts, 0 dirs
/usr/local/share/fonts: caching, new cache contents: 0 fonts, 0 dirs
/.local/share/fonts: skipping, no such directory
Re-scanning /usr/share/fonts: fc-cache: symbol lookup error: fc-cache: undefined symbol: FcDirCacheRescan

Já passei tanto tempo procurando uma solução possível, e tentei os seguintes comandos que foram sugeridos aqui e ali, entre outros

sudo dpkg --configure -a
sudo apt-get clean
sudo apt-get dist-upgrade

mas tudo em vão. Qualquer ajuda de depuração seria muito apreciada!

EDIT:

O Shutupshare sugeriu fazer apt-get install --reinstall libfontconfig1 libfontconfig1-dev libfontconfig1-dbg , isso dá o seguinte:

stan@stan-ThinkPad-T530:~$ sudo apt-get install --reinstall libfontconfig1 
libfontconfig1-dev libfontconfig1-dbg
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Reinstallation of libfontconfig1 is not possible, it cannot be downloaded.
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies.
 libfontconfig1-dbg : Depends: libfontconfig1 (= 2.11.0-0ubuntu4) but 2.11.0-0ubuntu4.1 is to be installed
 libfontconfig1-dev : Depends: libfontconfig1 (= 2.11.0-0ubuntu4) but 2.11.0-0ubuntu4.1 is to be installed
                          Depends: libfreetype6-dev (>= 2.1.7) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

EDIT2:

Saída de dpkg --get-selections :

1) hold (não dá nada)

stan@stan-ThinkPad-T530:~$ sudo dpkg --get-selections | grep hold

2) purge

stan@stan-ThinkPad-T530:~$ sudo dpkg --get-selections|grep purge
rsyslog                     purge

3) deinstall

stan@stan-ThinkPad-T530:~$ sudo dpkg --get-selections|grep deinstall
libcap2:i386                    deinstall
libcgmanager0:i386              deinstall
libepoxy0                   deinstall
libffi6:i386                    deinstall
libglib2.0-0:i386               deinstall
libllvm3.5:amd64                deinstall
libpython2.7-minimal:i386           deinstall
libsystemd-daemon0:i386             deinstall
libudev1:i386                   deinstall

O restante tem o status installed .

    
por Stan 26.02.2015 / 19:55

4 respostas

4

Eu também tive esse problema e finalmente resolvi o problema usando a resposta do Bachstelze deste tópico - link - mas apenas reinstalei com o pacote fontconfig-config de remoção.

Este é o comando que funcionou para mim:

sudo apt-get install --reinstall --purge fontconfig-config
    
por stan.cristian88 12.11.2015 / 00:21
1

Parece que o principal problema que você tem aqui é que a versão do fontconfig-config está na versão 2.11.0-0ubuntu4.1, mas instalar o libfontconfig1-dev requer o 2.11.0-0ubuntu4. Espero que você tenha resolvido esse problema. Se não, você pode tentar rebaixar o fontconfig-config para 2.11.0-0ubuntu4.

sudo apt-get install fontconfig-config=2.11.0-0ubuntu4

Então, pelo menos você pode instalar o libfontconfig1-dev, assim como o libfontfig1 = 2.11.0-0ubuntu4.

    
por NING Li 12.08.2016 / 19:29
0

Ei, saindo do símbolo perdido, você poderia tentar:

sudo apt-get upgrade libfontconfig1
sudo apt-get install --reinstall libfontconfig1 libfontconfig1-dev libfontconfig1-dbg
    
por stedotmartin 26.02.2015 / 20:01
0

Este é o comando que funcionou para mim: link

wget http://launchpadlibrarian.net/177041650/libfontconfig1-dev_2.11.0-0ubuntu4.1_amd64.deb
sudo apt-get install libexpat1-dev
sudo dpkg -i libfontconfig1-dev_2.11.0-0ubuntu4.1_amd64.deb
    
por Playaer 15.12.2015 / 10:39

Tags