Introduccion:
Instalar fuentes adicionales en FreeBSD.
Requerimientos:
* FreeBSD instalado
* The X Window System instalado
* Leer este tutorial
El proceso:
Type1 Fonts
# cd /usr/ports/x11-fonts/urwfonts
# make install clean
# edit /etc/X11/xorg.conf
Agregamos al final la linea FontPath "/usr/local/lib/X11/fonts/urwfonts/", se ve asi:
Section "Files"
ModulePath "/usr/local/lib/xorg/modules"
...
FontPath "/usr/local/lib/X11/fonts/75dpi/"
FontPath "/usr/local/lib/X11/fonts/urwfonts/"
Para cargar las nuevas fuentes sin reiniciar las X, ejecutamos desde la cuenta del usuario
$ xset fp+ /usr/local/lib/X11/fonts/urwfonts
$ xset fp rehash
TrueType® Fonts
# edit /etc/X11/xorg.conf
Agregamos al final la linea FontPath "/usr/local/lib/X11/fonts/TrueType/", se ve asi:
Section "Files"
ModulePath "/usr/local/lib/xorg/modules"
...
FontPath "/usr/local/lib/X11/fonts/urwfonts/"
FontPath "/usr/local/lib/X11/fonts/TrueType/"
Agregamos al final la linea Load "freetype", se ve asi:
Section "Module"
...
Load "dri2"
Load "freetype"
# mkdir /usr/local/lib/X11/fonts/TrueType
# cd /usr/ports/x11-fonts/ttmkfdir
# make install clean
Copiar las fuentes al directorio /usr/local/lib/X11/fonts/TrueType
# cp /usr/home/jdoe/*.ttf /usr/local/lib/X11/fonts/TrueType
Luego las hacemos compatibles con FreeBSD
# cd /usr/local/lib/X11/fonts/TrueType
# ttmkfdir -o fonts.dir
Para cargar las nuevas fuentes sin reiniciar las X, ejecutamos desde la cuenta del usuario
$ xset fp+ /usr/local/lib/X11/fonts/TrueType
$ xset fp rehash
No comments:
Post a Comment