Mscorefonts problems

Solution 1:

Same problem, found a solution

  1. Install the package ttf-mscorefonts-installer, we need some things from the package later

    sudo apt-get install ttf-mscorefonts-installer
    
  2. Download and install the fonts

    TMP=$(mktemp -d)
    cd "$TMP"
    awk '/Url/ {system("wget "$2)}' /usr/share/package-data-downloads/ttf-mscorefonts-installer
    sudo /usr/lib/msttcorefonts/update-ms-fonts "$TMP"/*
    
  3. Avoid future error message

    sudo touch /var/lib/update-notifier/package-data-downloads/ttf-mscorefonts-installer
    
  4. Housekeeping

    cd ..
    rm -r "$TMP"
    

primary source

Problem solved ;)

Solution 2:

I fixed it.

Download and install this via software-center and boom! It's working :D

Solution 3:

A straight-forward option work-around can be implemented as follows using a Debian repo (reliable):

sudo apt-get -y remove --purge ttf-mscorefonts-installer
wget http://ftp.de.debian.org/debian/pool/contrib/m/msttcorefonts/ttf-mscorefonts-installer_3.6_all.deb -P ~/Downloads
sudo apt install ~/Downloads/ttf-mscorefonts-installer_3.6_all.deb

Hopefully, the Ubuntu repo version will be fixed soon.

Solution 4:

As for a freshly set up Ubuntu 64-bit 15.04 with all extras also installed during installation, Wine stopped half-ways in the process, and it was connected to the mscorefonts, with the repeated error message given above. After waiting some hours, I quit the software center, and rebooted. The following lines cured the problem completely and set up the mscorefonts correctly, as far as I can tell. Explanation is given underneath.

sudo apt-get update --fix-missing
sudo dpkg --configure -a
cd
sudo wget downloads.sourceforge.net/corefonts/andale32.exe
sudo wine andale32
rm andale32.exe

The first line tells that the second line (the dpkg) has to be performed, to complete wine installation. Then, when this takes places, it tells that andale32.exe is not as expected (in hash value, which probably refers to an earlier version of it or such). Assuming that it is okay, it is then manually installed, in this case by running 'sudo' in front of wine, which may not be necessary. After the final line and a wait, the question of whether to accept the fonts arises as a nice window. A repeat of the --fix-missing reports no need for additional commands.