2024年11月FreeBSD添加字体的方法

发布时间:

  ⑴在FreeBSD系统操作中,由于个人需要,系统自带的字体不够用,要另外添加一些字体,遇到这个问题该怎么办呢?下面小编就教大家如何为FreeBSD系统安装字体,一起来学习下吧。

  ⑵因此,需要我们手工加入字体,可采用如下两种方式:

  ⑶、添加Times Roman,Helvetica,Palatino等Type字体

  ⑷URW字体集合 (x-fonts/urwfonts 就包括了高质量的 标准 type 字体。因此安装URW即可:

  ⑸# cd /usr/ports/x-fonts/urwfonts

  ⑹# make install clean

  ⑺需要在 X 服务器的配置文件 (/etc/X/x.conf 中增加下面的配置:

  ⑻FontPath “/usr/local/lib/X/fonts/URW/”

  ⑼也可采用命令方式在当前会话中执行,以下内容需要在X桌面的Terminal执行才可以。

  ⑽% xset fp+ /usr/local/lib/X/fonts/URW

  ⑾% xset fp rehash

  ⑿、安装微软雅黑、宋体等等中文字体即 TrueType? 字体

  ⒀X 已经内建了对 TrueType? 字体的支持

  ⒁将下面这行添加到 /etc/X/x.conf 文件的 “Module” 部分

  ⒂Load “freetype”

  ⒃.为 TrueType? 字体创建一个目录

  ⒄比如, /usr/local/lib/X/fonts/TrueType, 然后把所有的 TrueType? 字体复制到这个目录。记住您不能直接从 Macintosh? 计算机中提取TrueType? 字体; 能被 X 使用的必须是UNIX?/MS-DOS?/Windows? 格式的。

  ⒅. 用 ttmkfdir 来创建 fonts.dir 文件, 以便让X字体引擎知道您已经安装了这些新文件。

  ⒆.. ttmkfdir 需要安装,直接用pkg_add -r ttmkfdir就能装上。

  ⒇# cd /usr/local/lib/X/fonts/TrueType

  ⒈# ttmkfdir -o fonts.dir

  ⒉. 把 TrueType? 字体目录添加到字体路径中

  ⒊需要在 X 服务器的配置文件 (/etc/X/x.conf 中增加下面的配置:

  ⒋FontPath “/usr/local/lib/X/fonts/TrueType”

  ⒌如果要立即启用请输入:(以下命令需要在X桌面的Terminal中执行才可以

  ⒍% xset fp+ /usr/local/lib/X/fonts/TrueType

  ⒎% xset fp rehash

  ⒏就是这样。现在 scape?,Gimp,StarOffice™ 和其他所有的 X 应用程序 应该可以认出安装的TrueType? 字体。一些很小的字体(如在 Web 页面上高分辨率显示的文本 和一些很大的字体(在StarOffice™ 下 现在看起来已经很好了。

  ⒐、安装文泉驿中文字体:

  ⒑# whereis wqy

  ⒒wqy: /usr/ports/x-fonts/wqy

  ⒓# cd /usr/ports/x-fonts/wqy

  ⒔# make install clean

  ⒕让X系统启动时载入字体。

  ⒖编辑/etc/X/x.conf

  ⒗在Section “Files”里面加一行,FontPath “/usr/local/lib/X/fonts/wqy”像下面这样

  ⒘Section “Files”

  ⒙ModulePath “/usr/local/lib/x/modules”

  ⒚FontPath “/usr/local/lib/X/fonts/misc/”

  ⒛FontPath “/usr/local/lib/X/fonts/TTF/”

  ①FontPath “/usr/local/lib/X/fonts/OTF”

  ②FontPath “/usr/local/lib/X/fonts/Type/”

  ③FontPath “/usr/local/lib/X/fonts/dpi/”

  ④FontPath “/usr/local/lib/X/fonts/dpi/”

  ⑤FontPath “/usr/local/lib/X/fonts/wqy”

  ⑥EndSection

  ⑦上面就是FreeBSD添加字体的方法介绍了,本文详细介绍了各种字体的安装方法,能够满足你的基本需求,其他字体的添加方法类似。