fc-list lists fonts and styles available on the system using fontconfig. You can use fc-list to find out whether particular language font is installed or not. In this tutorial, I will show you how to list all installed fonts and also how to list installed fonts for a particular language in Unix-like systems.
To list all installed fonts that are available on your linux system, just run:
fc-list
Options:
This command follows the usual GNU command line syntax, with long options starting with two dashes (‘-‘). A summary of options is included below.
-v
Print verbose output of the whole font pattern for each match, or elements if any is provided.
-f
Format output according to the format specifier format.
-V
Show version of the program and exit.
-h
Show summary of options.
pattern
If this argument is set, only fonts matching pattern are displayed.
element
If set, the element property is displayed for matching fonts.
Sample output:

Find particular installed fonts:
fc-list command also allows you to list installed fonts for a particular language.
To list of installed fonts for Spanish language, run the following command:
fc-list :lang=es
Sample output:


Related Posts
cal - How to get monthly and yearly calendar in LinuxThe "cal" command displays a simple calendar with Linux / UNIX date and time. If no argument passed, then the current month is displayed. Month can specified as a number from 1 to 12. "cal" command without argument to get monthly calendar: Monthly calendar "cal" command with argument to get…
-
Linux cURL Commandcurl is a tool / client to transfer data from or to a server and to get documents/files from or send documents to a server, using any one of the supported protocols (HTTP, HTTPS, FTP, FTPS, GOPHER, DICT, TELNET, LDAP or FILE). The command is designed to work without user…
-
How to list out all installed or activated apache modules on a server: apache2ctlLinux widely uses operating system in the server side and client side. Linux operating system provides flexible options to install our custom packages and extensions based on our project requirement. Apache is developed and maintained by an Open community of Apache Software Foundation. Apache is free and open source software and it…
Linux finding largest files in directory recursively - find,sort,headLinux Find command is used to search and locate the list of files and directories based on conditions you specify that match the arguments. The procedure to find the largest files in a directory recursively using find command is as follows: Open the terminal applicationLogin as the root user using…
-
How to create new user account with home directory in Open SUSE LinuxTo create a new user account in Open suse, please use the below command. # useradd -g usergroup -p testpwd -d /home/testuser -m testuser Where, usergroup - With primary group /home/testuser - Home directory testuser - Login name testpwd - Password More information: useradd [options] LOGIN useradd -D useradd -D [options] Options for create…
-
-
How to fix "Invalid command 'AuthGroupFile'" not included in the server configurationI've noticed the following error while creating .htaccess file for my test domain. [Mon Apr 27 12:23:31.372528 2020] [core:alert] [pid 3783] [client 104.18.52.192:46990] /srv/www/htdocs/production/www.testwebsite.com/.htaccess: Invalid command 'AuthGroupFile', perhaps misspelled or defined by a module not included in the server configuration, referer: http://www.testwebsite.com/ If you are getting the same issue, then…
-
How to get / list out installed PHP extension in Linux OSLinux widely uses operating system in the server side and client side. Operating system provides flexible options to install our custom packages and extensions based on our project requirement. Additionally, we can write our own shell scripts to automate our projects. PHP is used mainly in server-side application software along with various…
-
Find out what Perl modules already installed on Linux SystemUse 'instmodsh' command to get a complete list of installed Perl modules on your Linux system and it provides an interactive shell type interface to query details of locally installed Perl modules. Open your terminal and type the following command: instmodsh Now, you will get the list of available commands…
-
cd command in Linux / Unix'cd' is a Linux command to change the current working directory or folder of the terminal (Shell). Syntax: # cd [directory / folder name] cd: cd [-L|[-P [-e]]] [dir] Change the shell working directory. Change the current directory to DIR. The default DIR is the value of the…