Last active
October 24, 2018 08:47
-
-
Save AubreyHewes/81df325da0d25f48cc5d5e616a996a6f to your computer and use it in GitHub Desktop.
ttf-mscorefonts-installer failure Ubuntu 18 18.04 18.10
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
#!/bin/bash | |
# After updating from 17.04 I get apt errors as the `ttf-mscorefonts-installer` package is not downloading | |
# the fonts properly timeouts/forbidden et al | |
sudo apt purge ttf-mscorefonts-installer | |
wget http://httpredir.debian.org/debian/pool/contrib/m/msttcorefonts/ttf-mscorefonts-installer_3.7_all.deb | |
sudo apt install ./ttf-mscorefonts-installer_3.7_all.deb && rm ./ttf-mscorefonts-installer_3.7_all.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment