web-dev-qa-db-ja.com

CentOS 7のフォントをインストールする方法

ただ学び、私のシステムに新しいフォントをインストールしようとしています。

これまでのところ、「fonts」ディレクトリを作成し、「oregon」フォントをこのフォルダに解凍しました。これで、フォントは/ home/denny/fontsにあります。

これらのフォントを/ usr/share/fontsに移動するにはどうすればよいですか?また、このフォントディレクトリに「oregon」という新しいフォルダを作成しました。デフォルトのフォントはすべてこのディレクトリにあると思います。

私はここで何かが足りないことを知っています。

ありがとう、デニー

6
Denny

homeディレクトリに.fontsという名前のフォルダーを作成します。

mkdir /home/$USER/.fonts

ファイルを解凍してそこに移動します。次に、ターミナルからコマンドを実行します。

fc-cache -v
fc-cache-64 -v

そして、フォントが利用可能になっているはずです。

詳細はman fc-cacheをご覧ください:

DESCRIPTION
       fc-cache scans the font directories on the system and builds font information cache files for applications  using  fontconfig
       for their font handling.

       If  directory  arguments  are  not  given,  fc-cache uses each directory in the current font configuration. Each directory is
       scanned for font files readable by FreeType. A cache is created which contains properties of each  font  and  the  associated
       filename.  This cache is used to speed up application startup when using the fontconfig library.

       Note that fc-cache must be executed once per architecture to generate font information customized for that architecture.
6
George Udosen