Created
December 12, 2016 09:10
-
-
Save Voronenko/148326eabe4e6a14c107ecb7b01aed72 to your computer and use it in GitHub Desktop.
Fix wine popup "ttf-mscorefonts-installer"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install the package ttf-mscorefonts-installer, we need some things from the package ater | |
sudo apt-get install ttf-mscorefonts-installer | |
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"/* | |
Avoid future error message | |
sudo touch /var/lib/update-notifier/package-data-downloads/ttf-mscorefonts-installer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment