Yes, there's also a very easy way to install all of the common Windows fonts
on Linux. You don't usually have to do this on Fedora (because it comes with
fonts called the "Liberation" fonts that are the same exact size as the
Windows fonts), but if you want to do it, here's how:
- Install the
chkfontpath package
from ATrpms. (Click on either the
i686
orx86_64
package, depending on whether you have a 32-bit or 64-bit machine.) - Open a Terminal.
- Become root: su -
- Install some packages you'll need for the following steps:
yum install rpm-build cabextract ttmkfdir wget
- Download the MS Core Fonts Smart Package File:
wget http://corefonts.sourceforge.net/msttcorefonts-2.0-1.spec
- Build the Core Fonts package:
rpmbuild -ba msttcorefonts-2.0-1.spec
- Install the Core Fonts package:
yum install --nogpgcheck /root/rpmbuild/RPMS/noarch/msttcorefonts-2.0-1.noarch.rpm
(Thanks to David A. Wheeler and others for convincing me to
add the MS Core Fonts instructions. Thanks to byro for pointing
out the URL to the 2.0 package!)