web-dev-qa-db-fra.com

Erreur lors de l'exécution: apt-get install ttf-mscorefonts-installer

J'essaie d'installer les polices MS Core sur Ubuntu 14.04 LTS et rencontre l'erreur suivante:

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.

Lancer dpkg --get-selections | grep hold ne renvoie rien et je ne trouve pas de paquet dans apt-get appelé cabextract.

De tout ce que j'ai googlé, l'installation des polices MS Core est relativement simple, donc je suis un peu perdu. Comment puis-je résoudre ce problème et installer les polices de base?

Edit:

Voici mon fichier /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

cabextract est dans le référentiel universe, si vous mettez à jour votre /etc/apt/sources.list:

#############################################################
################### 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

Puis courir

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

apt installera cabextract pour répondre aux dépendances de ttf-mscorefonts-installer partiellement installé. Si cela ne fonctionne pas, essayez à nouveau Sudo apt-get install ttf-mscorefonts-installer.

2
Ben Grimm

Avez-vous essayé ceci:

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