|
1、安装hupeng923的Slackware 10 的美化补丁(不安装也可以,但中文字体不好看)
2、添加中文字体
3、修改etc/profile.d/lang.sh,改locale为gb2312
英文界面中文输入,lang.sh如下:
#!/bin/sh
# Set the system locale (default C is the same as en_US):
#export LANG=C
#unset LC_ALL
export LANG=zh_CN.gb2312
export LC_CTYPE=zh_CN.gb2312
export LC_NUMERIC=C
export LC_TIME=C
export LC_COLLATE=C
export LC_MONETARY=C
export LC_MESSAGES=C
export LC_PAPER=C
export LC_NAME=C
export LC_ADDRESS=C
export LC_TELEPHONE=C
export LC_MEASUREMENT=C
export LC_IDENTIFICATION=C
#export LC_ALL=zh_CN.gbk
# This setting has been reported to fix some cut and paste
# problems with GTK2. If you experience this, try it:
#export LANG=en_US.ISO8859-1 |
|