linux编码

vi /etc/sysconfig/i18n

LANG="zh_CN.UTF-8"

 

1.手动更改profile文件的命令:
vi /etc/profile

2.在文件的末尾添加以下两行命令:
export LC_ALL="zh_CN.UTF-8"
export LANG="zh_CN.UTF-8"

 

3.也可在/root/.bash_profile文件的末尾添加以下两行命令:
export LC_ALL="zh_CN.UTF-8"
export LANG="zh_CN.UTF-8"

你可能感兴趣的:(linux,bash)