当前位置:七道奇文章资讯系统安全Linux安全
日期:2011-01-23 03:26:00  来源:本站整理

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在登录时,会顺次读取这些配置文件:

  1. /etc/profile  
  2. /.bash_profile  
  3. /.bash_login  
  4. /.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,就是设置系统默许语言的地方,关于我的系统,目前它的内容以下:

  1. LANG="en_US" 
  2. SUPPORTED="en_US:en" 
  3. SYSFONT="lat0-sun16" 
  4. SYSFONTACM="iso01" 

假如,你但愿系统的默许语言变更为UTF-8,可以把LANG改正成:LANG="en_US.UTF-8"   以上是“Linux Bash Shell系统的利用详解[Linux安全]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:

  • windows下的近似linux下的grep号令--findstr
  • linux下mysql链接被防火墙禁止的办理办法
  • Linux下mysql新建账号及权限设置办法
  • SUSE Linux下搭建Web服务器
  • Windows/Linux MySQL忘掉密码重置密码教程
  • Linux下Apache自动监测重启脚本(智能化程度较高)
  • linux备份 linux克隆 linux clone
  • <b>为什么 Linux不需求碎片整理</b>
  • CentOS6 yum搭建Linux+Nginx+PHP+MYSQL(LNMP)
  • Linux系统有效防备ARP攻击
  • Linux下 Memcache的安装和简单管理
  • 笔记本预装linux重装成windows系统
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .