Hi
This is what I did to use Fbterm with uim on dCore.
Both applications are famous and well documented. Maybe I am going to end up saying something obvious...
Importing and loading:
sce-import fbterm
sce-load fbterm
sce-import uim-fep
sce-load uim-fep
and do the same for an input method module you have chosen.(in my case, uim-skk)
Fbterm setup:
When Fbterm cannot find framebuffer device, it falls back to vesa which needs root privileges. It means you have to grant root privileges to Fbterm, which can be done by copying it from /tmp/tcloop/... to /home/tc/.local/bin and changing its mode bits (chmod +s).
Note: do 'which fbterm' and make sure the copy is the one executed.
Uim setup:
In its startup process, uim needs to write two files in a directory named /var/lib/uim, which does not exist at the point of 'sce-load'ing. So in place of uim, you make the directory with its write permission given, then run these commands:
uim-module-manager --unregister-all
uim-module-manager --register <your imput method module name>
(in my case,
uim-module-manager --register skk
Check that everyting is okay by typing commands: cat /var/lib/uim/in* and cat /var/lib/uim/lo*)
Start fbterm and uim-fep.
bye
==============================================================================================
About uim-skk:
This module gave me its own set of difficulties. I had to read its postinst file and mimick what it does manually.
(Postinst files are in /usr/local/postinst/. Skk's postinst file makes a symlink, so I did the same.
ln -s /usr/share/skk/SKK-JISYO.L /usr/share/skk/SKK-JISYO)