0% found this document useful (0 votes)
64 views3 pages

Installing MSCorefontsin Linux Systems

The document provides instructions for installing Microsoft fonts on Linux operating systems. It details how to install fonts like Arial, Times New Roman and newer Microsoft office fonts on Red Hat, Fedora, Debian and Ubuntu systems using packages and by extracting fonts from Microsoft PowerPoint viewer. It also provides commands to install Chinese, Japanese, Korean and Indic language specific fonts.

Uploaded by

greatsun
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
64 views3 pages

Installing MSCorefontsin Linux Systems

The document provides instructions for installing Microsoft fonts on Linux operating systems. It details how to install fonts like Arial, Times New Roman and newer Microsoft office fonts on Red Hat, Fedora, Debian and Ubuntu systems using packages and by extracting fonts from Microsoft PowerPoint viewer. It also provides commands to install Chinese, Japanese, Korean and Indic language specific fonts.

Uploaded by

greatsun
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

How to Install Microsoft Fonts on Linux [Link] t...

Prizm Content Connect

How to Install Microsoft Fonts


on Linux

User Guides > PCC with Legacy Services (Proxy Server) > How To's for PCC with Legacy Services (Proxy
Server) > How To's - for the Imaging Service > How to Install Microsoft Fonts on Linux

Installation of Microsoft Fonts


This guide explains how to install the following Microsoft fonts on Linux: Arial, Comic Sans MS, Courier New,
Georgia, Impact, Times New Roman, Trebuchet MS, Webdings, Verdana, Wingdings, Tahoma, Lucida, and
Calibri.

An additional section below details the installation of Chinese, Japanese, Korean and Indic specific fonts.

Red Hat / Fedora (CentOS) Linux Distributions

1 - Install mscorefonts (for example, Arial, Comic Sans MS…)


Install tools:
Example Copy Code

# yum install rpm-build


# yum install ttmkfdir
# yum install xfs
# yum install chkfontpath

The latter two commands are not required when installing to the newer systems (CentOS 6.* / Redhat 6.*)
Install CABExtract tool:
Example Copy Code

# yum install cabextract

If above fails, you may use following alternative commands for CABExtract tool installation:
Example Copy Code

# wget [Link]
# rpm -ihv [Link]

For a 64-bit system use: [Link]

Install MSTTCoreFonts:
Example Copy Code

# wget [Link]
# rpmbuild -ba [Link]

If above rpmbuild command is successfull it writes few lines before the end the messages similar to:
Example Copy Code

Wrote: /usr/src/redhat/SRPMS/[Link]
Wrote: /usr/src/redhat/RPMS/noarch/[Link]

Check for the path where [Link] is located as the result of rpmbuild command
above. Use that path in the next command:
Example Copy Code

# yum localinstall --nogpgcheck /usr/src/redhat/RPMS/noarch/[Link]

The command above should finish with the message similar to:
Example Copy Code

Installed:
[Link] 0:2.5-1

2 - Install Vista and Microsoft Office Fonts (for example, Tahoma, Calibri…)
To install the fonts you need to download Microsoft PowerPoint Viewer 2007 from this location:

1 of 3 25/07/18, 5:41 PM
How to Install Microsoft Fonts on Linux [Link] t...

[Link]
Using cabextract utility only the specific [Link] package will be extracted from the file
[Link]. The file contains Vista and Microsoft Office fonts that will be used for the local
installation:
Example Copy Code

# cabextract -F [Link] [Link]


# mkdir /usr/share/fonts/ppt
# cabextract -F '*.TT?' -d /usr/share/fonts/ppt [Link]

3 - Clear Fonts Cache


Example Copy Code

# fc-cache -fv

4 - Restart the Prizm Service


Example Copy Code

# /usr/share/prizm/scripts/[Link] restart

Debian (Ubuntu) Linux Distributions

1 - Install mscorefonts (for example, Arial, Comic Sans MS…)


Example Copy Code

# sudo apt-get -y install msttcorefonts

2 - Install Vista & Microsoft Office Fonts (for example, Tahoma, Calibri…)
To install the fonts you need to download Microsoft PowerPoint Viewer 2007 from this location:
[Link]
Using cabextract utility only the specific [Link] package will be extracted from the file
[Link]. The file contains Vista and Microsoft Office fonts that will be used for the local
installation:
Example Copy Code

# sudo apt-get install cabextract


# sudo cabextract -F [Link] [Link]
# sudo mkdir /usr/share/fonts/ppt
# sudo cabextract -F '*.TT?' -d /usr/share/fonts/ppt [Link]

3 - Clear Fonts Cache


Example Copy Code

# sudo fc-cache -fv

4 - Restart the Prizm Service


Example Copy Code

# sudo /usr/share/prizm/scripts/[Link] restart

Installation of Chinese, Japanese, Korean, Indic Specific Fonts


Red Hat / Fedora (CentOS) Linux Distributions

1 - Install Fonts
Example Copy Code

# yum install fonts-chinese


# yum install fonts-japanese
# yum install fonts-korean
# yum install fonts-kannada
# yum install fonts-hindi

Follow this link for other Indic fonts: [Link]

2 of 3 25/07/18, 5:41 PM
How to Install Microsoft Fonts on Linux [Link] t...

2 - Clear Fonts Cache


Example Copy Code

# fc-cache -fv

3 - Restart the Prizm Service


Example Copy Code

# /usr/share/prizm/scripts/[Link] restart

Debian (Ubuntu) Linux Distributions

1 - Install Necessary Tools


Example Copy Code

# sudo apt-get -y update


# sudo apt-get -y install python-software-properties
# sudo add-apt-repository "deb [Link] lucid partner"
# sudo apt-get -y update

2 - Install Fonts: Chinese (traditional, simplified), Korean, Japanese, Indic


Example Copy Code

# sudo apt-get -y install ttf-arphic-ukai


# sudo apt-get -y install ttf-arphic-uming
# sudo apt-get -y install ttf-arphic-gbsn00lp
# sudo apt-get -y install ttf-arphic-bkai00mp
# sudo apt-get -y install ttf-arphic-bsmi00lp
# sudo apt-get -y install ttf-arphic-gkai00mp
# sudo apt-get -y install ttf-wqy-zenhei
# sudo apt-get -y install ttf-sazanami-mincho
# sudo apt-get -y install ttf-sazanami-gothic
# sudo apt-get -y install ttf-unfonts-core
# sudo apt-get -y install ttf-unfonts-extra
# sudo apt-get -y install ttf-unfonts
# sudo apt-get -y install ttf-takao
# sudo apt-get -y install ttf-kochi-gothic
# sudo apt-get -y install ttf-kochi-mincho
# sudo apt-get -y install ttf-baekmuk
# sudo apt-get -y install ttf-indic-fonts
# sudo apt-get -y install ttf-tmuni
# sudo apt-get -y install ttf-dzongkha
# sudo apt-get -y install ttf-khmeros
# sudo apt-get -y install ttf-jura
# sudo apt-get -y install ttf-sinhala-lklug
# sudo apt-get -y install ttf-sil-padauk

3 - Clear Fonts Cache


Example Copy Code

# sudo fc-cache -fv

4 - Restart the Prizm Service


Example Copy Code

# sudo /usr/share/prizm/scripts/[Link] restart

©2013. Accusoft Corporation. All Rights Reserved.

<IMG ALT='' BORDER='0' NAME='DCSIMG' WIDTH='1' HEIGHT='1'


SRC='[Link]
/dcsv5js96100008m6qwn8wsm6_5q7d/[Link]?dcsuri=/nojavascript&amp;
[Link]=No&amp;[Link]=8.0.2'>

3 of 3 25/07/18, 5:41 PM

You might also like