web-dev-qa-db-ja.com

実行中のエラー:apt-get install ttf-mscorefonts-installer

Ubuntu 14.04 LTSにMS Coreフォントをインストールしようとしていますが、次のエラーが発生しています。

vagrant@vagrant-ubuntu-trusty-64:~$ Sudo apt-get install ttf-mscorefonts-installer
Reading package lists... Done
Building dependency tree
Reading state information... Done
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:
 ttf-mscorefonts-installer : Depends: cabextract but it is not installable
E: Unable to correct problems, you have held broken packages.

dpkg --get-selections | grep holdを実行しても何も返されず、apt-getでcabextractというパッケージが見つかりません。

私がグーグルで調べたすべてのことから、MS Coreフォントのインストールは比較的簡単なので、少し迷ってしまいました。この問題を解決してコアフォントをインストールするにはどうすればよいですか?

編集:

これが私の/etc/apt/sources.listファイルです

#############################################################
################### OFFICIAL UBUNTU REPOS ###################
#############################################################

###### Ubuntu Main Repos
deb http://us.archive.ubuntu.com/ubuntu/ trusty main restricted multiverse

###### Ubuntu Update Repos
deb http://us.archive.ubuntu.com/ubuntu/ trusty-security main restricted multiverse
deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates main restricted multiverse
2
acarbonaro

/etc/apt/sources.listを更新する場合、cabextractuniverseリポジトリにあります。

#############################################################
################### OFFICIAL UBUNTU REPOS ###################
#############################################################

###### Ubuntu Main Repos
deb 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

次に実行する

Sudo apt-get update
Sudo apt-get -f install

aptは、部分的にインストールされたttf-mscorefonts-installerの依存関係を満たすためにcabextractをインストールします。それでも解決しない場合は、Sudo apt-get install ttf-mscorefonts-installerをもう一度試してください。

2
Ben Grimm

これを試しましたか:

Sudo apt-get clean    
Sudo apt-get install --reinstall ttf-mscorefonts-installer
0
nthl