-
Open Terminal:
- Press
Ctrl + Alt + T
to open a terminal window.
- Press
-
Navigate to the Font Directory:
- Use the
cd
command to navigate to the directory where your font files are located. In your case:
cd /home/asif/Downloads/JetBrainsMono-2.304/fonts/ttf
- Use the
-
Copy Font Files to System Fonts Directory:
- Copy the font files to your system's TrueType fonts directory using the
sudo cp
command:
sudo cp *.ttf /usr/share/fonts/truetype/
- Copy the font files to your system's TrueType fonts directory using the
-
Update Font Cache:
- Update the font cache so that Ubuntu recognizes the new fonts:
sudo fc-cache -f -v
-
Verify Installation:
- Open a text editor or any application where you can select fonts.
- Look for "JetBrains Mono" in the font selection list. If you see it, then the font has been successfully installed.
After completing these steps, you should have JetBrains Mono font installed and ready to use on your Ubuntu system.
Top comments (1)
It works great,Thanks.