Find Font File from Font Name on Linux

file searchfindfontssearch

I have a font with the name Media Gothic. How can I find the file name of that font in Linux? I need to copy that file to another system. I've tried:

find /usr/share/fonts/ -name '*media*'

But this gives no results. gothic gives some other fonts. TTF is a binary format so I can't use grep.

Best Answer

Have you tried ?

fc-list | grep -i "media"

Also give a try to fc-scan, fc-match

Related Question