web-dev-qa-db-ja.com

12.10-14.04のアップグレードに失敗しました、fontconfigのエラー

VPSで12.10を実行していますが、もうサポートされていないことに気付き、アップグレードを試みました。ここのフォーラムのスレッドをフォローして、次のことを行いました。

  1. Sources.listファイルを更新しました:

    ###### Ubuntu Main Repos
    deb http://us.archive.ubuntu.com/ubuntu/ trusty main restricted universe multiverse
    deb-src http://us.archive.ubuntu.com/ubuntu/ trusty main restricted universe multiverse
    
    ###### Ubuntu Update Repos
    deb http://us.archive.ubuntu.com/ubuntu/ trusty-security main restricted universe multiverse
    deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates main restricted universe multiverse
    deb-src http://us.archive.ubuntu.com/ubuntu/ trusty-security main restricted universe multiverse
    deb-src http://us.archive.ubuntu.com/ubuntu/ trusty-updates main restricted universe multiverse
    
    ###### Ubuntu Partner Repo
    deb http://archive.canonical.com/ubuntu trusty partner
    deb-src http://archive.canonical.com/ubuntu trusty partner
    
    ###### Ubuntu Extras Repo
    deb http://extras.ubuntu.com/ubuntu trusty main
    deb-src http://extras.ubuntu.com/ubuntu trusty main
    
    deb http://repo.ajenti.org/debian main main
    
  2. Ran Sudo apt-get update; Sudo apt-get upgrade -y

  3. これは失敗し、fontconfigについて不平を言っています:

    Setting up fontconfig (2.11.0-0ubuntu4.1) ...
    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
    Setting up apt-utils (1.0.1ubuntu2.6) ...
    Errors were encountered while processing:
    fontconfig
    E: Sub-process /usr/bin/dpkg returned an error code (1)
    
  4. cat /var/log/fontconfig.logは以下を提供します:

    /usr/share/fonts: caching, new cache contents: 0 fonts, 1 dirs
    /usr/share/fonts/truetype: caching, new cache contents: 0 fonts, 1 dirs
    /usr/share/fonts/truetype/ttf-dejavu: caching, new cache contents: 6 fonts, 0 dirs
    /usr/X11R6/lib/X11/fonts: skipping, no such directory
    /usr/local/share/fonts: caching, new cache contents: 0 fonts, 0 dirs
    /.local/share/fonts: fc-cache: symbol lookup error: fc-cache: undefined symbol: FcStrListFirst
    

Fontconfigをパージして再インストールし、fc-cache -fを呼び出してキャッシュを再構築しようとしましたが、役に立ちません。何か案は?

ありがとう、イヴァン

1
igalic

私はパージでfontconfig-configを削除し、その後すべてが機能し始めました:

apt-get remove --purge fontconfig-config
2
igalic