Arch Linux: Microsoft Fonts (msfonts)

By nick | Tech Support
19 Nov 2011

One of the first things I do when setting up a new Linux box is get my fonts sorted out, for obvious copyright reasons, the Microsoft fonts package isn’t shipped with Linux distributions.  The main reason for having Microsoft fonts on a Linux machine will be so that web pages that are designed for them will display correctly.

Although this will be similar for any Linux/BSD distribution, the instructions below focus on installing these fonts under Arch Linux.

First of all we’ll need to open up a terminal and get super user access

su

We then need to go to a temporary directory and download the msfonts.zip package:

cd /tmp
wget http://www.elfnet.org/wp-content/uploads/2011/11/msfonts.zip

Then we’ll need to decompress the zipped files and copy them to the universal fonts directory:

unzip msfonts.zip
cp fonts/ /usr/share/fonts/TTF/

Once that’s done you can finish up by refreshing your systems font cache:

fc-cache -vf
mkfontscale
mkfontdir

You should then find after you logout and back in again that you have new fonts available to use.

 

Manual Download: msfonts.zip

Leave a Reply