come faccio a mettere il font giapponese? io uso linux, ho letto un procedimento su http://thejapanesepage.com/ ma si tratta di cambiare la tastiera aggiornando xorg.conf (di seguito), io non voglio cambiare la tastiera ma solo installare i font:

Linux / XWindows / X.org

Linux also supports Japanese keyboards out of the box, but if your mapping is incorrect, it's a simple fix.

If your keyboard mapping is wrong in Linux, edit /etc/X11/xorg.conf as root with the following command.

sudo nano /etc/X11/xorg.conf

Look for the InputDevice for "Generic Keyboard". It should look like similar to the following:

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
Option "XkbOptions" "lv3:ralt_switch"
EndSection

Change the "XkbModel" and "XkbLayout" options to Japanese layout like so:

Option "XkbModel" "jp106"
Option "XkbLayout" "jp"

Save the file, and restart the X server by rebooting or hitting <ctrl>+<alt>+<Back Space>