fedora、redhat默认系统语言的修改方法

一、在shell下,执行export:

...

declare -x LANG="en_US"

...

这个LANE环境变量,就是我们希望去修改的,但是在哪里修改,比较合适呢?

 

二、使用man bash:

When bash is invoked as an interactive login shell, or as a non-interactive shell with the --login option, it first reads and executes commands  from  the file /etc/profile, if that file exists.  After reading that file, it looks for ~/.bash_profile, ~/.bash_login, and  ~/.profile, in that order, and reads and executes commands from the first one that exists and is readable.  The --noprofile option may be used when the shell is started to inhibit this behavior.

即bash在登录时,会依次读取这些配置文件:

/etc/profile

~/.bash_profile

~/.bash_login

~/.profile


三、对于shell的默认语言,应该在系统级的文件中(/etc/profile)修改,以便修改的结果可以被每一个用户继承:

打开/etc/profile,直接在其上,找不到关于LANG变量的设置命令,但细心观察,该脚本还执行了其他脚本:

...

for i in /etc/profile.d/*.sh ; do
    if [ -r "$i" ]; then
        . $i
    fi
done

...

 

四、到/etc/profile.d/目录下,查看这些*.sh的脚本,发现了一个名为"lang.sh"的文件,应该就是它了:

打开/etc/profile.d/lang.sh,开头几句:

...

for langfile in /etc/sysconfig/i18n $HOME/.i18n ; do
    [ -f $langfile ] && . $langfile && sourced=1
done

...

这个/etc/sysconfig/i18n,就是设置系统默认语言的地方,对于我的系统,现在它的内容如下:

LANG="en_US"
SUPPORTED="en_US:en"
SYSFONT="lat0-sun16"
SYSFONTACM="iso01"

如果,你希望系统的默认语言变更为UTF-8,可以把LANG修改为:

LANG="en_US.UTF-8"

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值