How to get Japanese (Chinene, Korean) input method in English environment ? |
Take Fedora Core 4 as an example:
Find a user, say it's john, login as John
0. cd ~/
1. mkdir -p ~/.xinput.d
2. ln -s /etc/X11/xinit/xinput.d/scim ~/.xinput.d/default
To apply this setting to all users,
0. login in the server as root
1. cd ~john/.xinput.d
2. drbl-cp-user -d .xinput.d default
If in the future, you want to remove the directory .xinput.d for every user, run
drbl-rm-user .xinput.d
If you want to make new user can apply this, you can try to add that setting in /etc/skel in the server like this:
0. in server, as root
1. cd /etc/skel
2. mkdir -p ~/.xinput.d
3. ln -s /etc/X11/xinit/xinput.d/scim ~/.xinput.d/default
Therefore, if you add new user later, that file will be automatically copied.
|
|