The user interface of Fedora Core 1 under English locale is quite pretty but the Chinese one still ugly. Does it support reading and writing Chinese under English locale like Windows 2K? This article shows how I installed Chinese support for Fedora under English locale(en_US.UTF-8).
cd /usr/share/fonts/windows ttmkfdir . cp fonts.scale fonts.dir chkfontpath --add /usr/share/fonts/windowsHere's the fonts I installed
(Arial) - arial.ttf arialbd.ttf arialbi.ttf ariali.ttf (Courier New) - cour.ttf courbi.ttf courbd.ttf couri.ttf (Tahoma) - tahoma.ttf tahomabd.ttf (Verdana) - verdana.ttf verdanab.ttf verdanai.ttf verdanaz.ttf (GB) - simsun.ttc (BIG5) - mingliu.ttc (KR) - batang.ttc gulim.ttc (JP) - msgothic.ttc msmincho.ttc
rpm -hUv scim-0.8.2-1.i586.rpm rpm -hUv scim-chinese-0.2.6-1.i586.rpmThan, you have to midify the file /etc/X11/xinit/xinitrc.d/xinput, in order to start SCIM automatically after X started. Here's the patch file
115c115,118 < XIM="none" --- > # XIM="none" > if [ -e /usr/bin/scim ]; then > XIM="SCIM" > fi 174a178,180 > SCIM) > XIM_PROGRAM=scim > XIM_ARGS="-d" ;;If you want, also change zh_CN*), zh_TW*), etc., to use SCIM under those locale.
37c37 < "xim" "X Input Method" "gtk20" "/usr/share/locale" "ko:ja:zh" --- > "xim" "X Input Method" "gtk20" "/usr/share/locale" "en:ko:ja:zh"Also comment the IMs that you never need.