Linux Bash Shell系统的利用详解[Linux安全]
本文“Linux Bash Shell系统的利用详解[Linux安全]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
给大家举荐一款很不错的Linux Bash Shell系统很有学习代价,这里我主要讲授Linux shell系统的利用,包含介绍Linux shell知识等方面.
1、在Linux Bash Shell下,履行export:
declare -x LANG="en_US"这个LANE环境变量,就是我们但愿去改正的,但是在那边改正,对比符合呢?
2、Linux Bash Shell利用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
3、关于Linux Bash Shell的默许语言
应当在系统级的文件中(/etc/profile)改正,以便改正的后果可以被每一个用户担当:翻开/etc/profile,直接在其上,找不到关于LANG变量的设置号令,但细心察看,该脚本还履行了其他脚本:for i in /etc/profile.d/*.sh ; doif [ -r "$i" ]; then . $i fi done
4、到/etc/profile.d/目录下,查看这些*.sh的脚本,发现了一个名为"lang.sh"的文件,应当就是它了:
翻开/etc/profile.d/lang.sh,开首几句:for langfile in /etc/sysconfig/i18n $HOME/.i18n ; do[ -f $langfile ] && . $langfile && sourced=1done这个/etc/sysconfig/i18n,就是设置系统默许语言的地方,关于我的系统,目前它的内容以下:
- LANG="en_US"
- SUPPORTED="en_US:en"
- SYSFONT="lat0-sun16"
- SYSFONTACM="iso01"
假如,你但愿系统的默许语言变更为UTF-8,可以把LANG改正成:LANG="en_US.UTF-8"
以上是“Linux Bash Shell系统的利用详解[Linux安全]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |