Use the following instructions to be able to type in Greek and switch layouts between English and Greek:
Use the instructions in the wiki to switch to full KDE desktop mode (if sticking to Easy Desktop mode, see also revision below).
sudo apt-get remove xandros-scim
In the case of the newer Input Method tool for Chinese, try
sudo apt-get remove xandros-gcin sudo apt-get remove gcin
sudo dpkg-reconfigure locales
Select the following locales:
Deselect any other locales that may be selected (look for locales starting with zh). You may select either the en_US.UTF-8 or el_GR.UTF-8 as the default locale.
~/.bashrc file to include the following lines:export LANG=el_GR.UTF-8 export LC_MESSAGES=en_US.UTF-8 export LC_CTYPE=el_GR.UTF-8
The same process as described up to this point, applies also to Easy Desktop mode.
~/.kde/share/config/kdeglobals
Add the following line in the “Global Shortcuts” section:
Switch to Next Keyboard Layout=default(Alt+Shift_L)
If you prefer another key combination, use the appropriate shortcut. E.g. for control-shift switching use:
Switch to Next Keyboard Layout=default(Ctrl+Shift_L)
Reboot your system and you are done.
— Manolis Kiagias 2008/03/05 07:21
A similar configuration, utilizing xorg.conf - if sticking with Easy Desktop Mode, requires editing the file:
sudo nano /etc/X11/xorg.conf
Section "InputDevice" Identifier "keyboard" Driver "kbd" Option "CoreKeyboard" Option "XkbRules" "xorg" Option "XkbLayout" "us,gr" #<- EDIT HERE to ,gr !! ... Option "XkbVariant" "" Option "XkbOptions" "grp:alt_shift_toggle,lv3:ralt_switch,grp_led:scroll,eurosign:5" #<- ADD THIS ONE!!
What this does is to effectively define/map
After investigation if a taskbar applet other than kxkb (does not work well), could be used in this case… …there is a solution, using fbxkb and here is how:
This applet cannot be found in the stable Debian repositories at the moment. So - in order to get it, you must use the unstable repos (process is almost as described in development tools…)
sudo su -
sudo nano /etc/apt/sources.list
and add the following line
deb <your mirror goes here> unstable main contrib non-free
If you are currently in Greece (GR) the correct entry is
ftp://ftp.gr.debian.org/debian
and at the place where it says <your mirror goes here>, but if you are not in GR you should find a closer mirror (could also be an http mirror). Note that the < and > symbols should be removed so for GR the line should read:
deb ftp://ftp.gr.debian.org/debian unstable main contrib non-free
apt-get update
(This will update the packages lists.)
sudo synaptic
sudo nano /usr/bin/startsimple.sh
wapmonitor &
(sleep 3; /usr/bin/fbxkb) &
apt-get update
— John Roberts 2008/04/14 01:10