For the time being, my computer cannot input Chinese character. So I came up with this blog in English instead. I tried to enable Chinese in my installation of Linux CentOS 7, however, I found that my ssh always shows a messy of characters, not Chinese. After painstaking searches I find out the trick.
Linux CentOS 7設置語言已經再也不使用/etc/sysconfig/i18n,而是/etc/locale.conf。shell
# vi /etc/locale.conf LANG="zh_CN.GB18030" LANGUAGE="zh_CN.GB18030:zh_CN.GB2312:zh_CN" SUPPORTED="zh_CN.GB18030:zh_CN:zh:en_US.UTF-8:en_US:en" SYSFONT="lat0-sun16" //After saving the file and run: # source /etc/locale.conf
If you're running CentOS 6 or the equivalent, you will have to modify a file located in /etc/sysconfig/i18n.bash
重啓系統以後,你會發現,Shell終端裏也所有用中文顯示。顯然,這是不能夠的。要不你試試:ssh
# yum grouplistui
顯示出來的中文,你還能夠拷貝中文結果,用來groupinstall嗎?因此,要單獨爲shell處理一下。this
# /root/.ssh/profile //這裏只管爲root用戶處理,其餘用戶無論,文件裏只有一句: export LANG=en_US.utf8