How to Install Times New Roman Font on Ubuntu: A Step-by-Step Guide

If you're using Ubuntu and find yourself missing the classic Times New Roman font, you're in the right place. This widely used serif font is essential for many documents, whether for academic papers, formal correspondence, or creative projects. In this guide, we’ll walk you through two simple methods to install Times New Roman on your Ubuntu system.

Method 1: Installing Microsoft Core Fonts

One of the easiest ways to get Times New Roman is by installing the Microsoft Core Fonts package. This package includes several commonly used fonts, including Times New Roman, Arial, and Verdana.

Step 1: Open the Terminal

You can open the Terminal by searching for it in your applications menu or using the shortcut Ctrl + Alt + T.

Step 2: Install the Font Package

To install the Microsoft Core Fonts, run the following commands:


sudo apt update
sudo apt install ttf-mscorefonts-installer

Step 3: Accept the EULA

During the installation process, you will be prompted to accept the End User License Agreement (EULA). Use the Tab key to navigate to the "OK" option and press Enter to accept.

Step 4: Update the Font Cache

Once the installation is complete, you need to update the font cache to make the newly installed fonts available to applications. Run:

sudo fc-cache -fv

Step 5: Verify the Installation

To confirm that Times New Roman has been successfully installed, you can check the font list with the following command:

fc-list | grep "Times New Roman"

If you see the font listed, congratulations! You’ve successfully installed Times New Roman.

Method 2: Manually Installing the Font

If you prefer to manually install the font or if you have a specific version of Times New Roman, you can do so by following these steps.

Step 1: Download the Font

First, you need to obtain the Times New Roman font file. Make sure to download it from a reputable source and ensure you have the right to use it.

Step 2: Create a Font Directory

You can install fonts in a local directory. If you don’t already have a .fonts directory, create one with the following command:

mkdir -p ~/.fonts

Step 3: Copy the Font File

Move the downloaded .ttf file(s) to your .fonts directory. Replace /path/to/TimesNewRoman.ttf with the actual path where you saved the font file:

cp /path/to/TimesNewRoman.ttf ~/.fonts/

Step 4: Update the Font Cache

Just like in the first method, you need to refresh the font cache. Run:

fc-cache -fv

Step 5: Verify the Installation

To ensure the font is installed, you can check again with:

fc-list | grep "Times New Roman"

Conclusion

Now you have two effective methods for installing the Times New Roman font on Ubuntu. Whether you chose to use the Microsoft Core Fonts package or manually install the font, you can enjoy the versatility of this classic typeface in your documents.

If you run into any issues during the installation process or have further questions, feel free to reach out for assistance. Happy typing!

Share this

Related Posts

Previous
Next Post »