I am attempting to install the MS Core fonts on Ubuntu 14.04 LTS, and am running into the following error:
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.
Running dpkg --get-selections | grep hold
doesn't return anything and I can't find a package in apt-get called cabextract
.
From everything I've Googled, installing the MS Core fonts is relatively straightforward, so I'm a tad lost. How can I resolve this issue and install the core fonts?
Edit:
Here's my /etc/apt/sources.list
file
#############################################################
################### 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
apt-mark showhold
– αғsнιη Jan 09 '15 at 20:24sudo apt-get --no-install-recommends build-dep ttf-mscorefonts-installer
and reply the changes. – αғsнιη Jan 09 '15 at 20:28E: You must put some 'source' URIs in your sources.list
– acarbonaro Jan 09 '15 at 20:29sudo apt-get install aptitude
thensudo aptitude install cabextract
then try to installttf-mscorefonts-installer
. if doesn't solve tryaptitude why-not cabextract
and post the output of that in body of your question – αғsнιη Jan 09 '15 at 20:47cabextract
I got this error:No candidate version found for cabextract
. When I ranaptitude why-not cabextract
it returnedUnable to find a reason to remove cabextract.
– acarbonaro Jan 09 '15 at 20:55