学习bash——环境配置

一、环境配置文件的重要性

  Bash在启动时直接读取这些配置文件,以规划好bash的操作环境。

  即使注销bash,我们的设置仍然保存。

 

二、login shell

  通过完整的登录流程取得的bash,称为login shell。

  譬如,我们由tty1~tty6登录,需要输入用户的账号与密码,此时取得的bash就称为“login shell”。

 

三、non-login shell

  不需要通过重复登录取得的bash,成为non-login shell。

  譬如,我们以X Window登录Linux后,再以X的图形界面启动终端,此时得到的bash并没有需要再次输入账号密码,故此bash就是“non-login shell”。

 

四、环境配置文件概述

  配置文件分为全体系统的配置文件、用户个人偏好配置文件。

  login shell 和 non-login shell 在启动时读取的配置文件并不相同:

  login shell:/etc/profile、~/.bash_profile或~/.bash_login或~/.profile(只存在一个,依不同的distribution而定)

  non-login shell:~/.bashrc

 

五、/etc/profile(login shell会读)

1. 概述

  • 利用UID来决定很多重要的变量数据

2. 用途

  • 帮所有用户设置整体环境

3. 主要变量

  • PATH:依据UID决定PATH变量要不要含有sbin的系统命令目录
  • MAIL:依据账号设置用户的mailbox到/var/spool/mail/账号名
  • USER:根据用户的账号设置此变量内容
  • HOSTNAME:依据主机的hostname命令决定此变量内容
  • HISTSIZE:历史命令记录条数

4. 调用外部的设置数据

  • /etc/inputrc:此文件内容为bash的热键、[Tab]有没有声音等数据。其实这个文件没有被执行。/etc/profile会主动判断用户有没有自定义输入的按键功能,如果没有的话,/etc/profile就会决定设置“INPUTRC=/etc/inputrc”这个变量。
  • /etc/profile.d/*.sh:这指目录内的众多文件。只要在/etc/profile.d/这个目录内且扩展名为.sh,另外用户能够具有r的权限,那么该文件就会被/etc/profile调用。这个目录下面的文件规定了bash操作接口的颜色、语系、ll与ls命令的命令别名、vi的命令别名、which的命令别名等。如果你需要设置一些共享的命令别名时,可以在这个目录下自行创建扩展名为.sh的文件,并将所需要的数据写入即可。
  • /etc/sysconfig/i18n:这是个决定bash默认使用何种语系的重要配置文件。由/etc/profile.d/lang.sh调用。

 

六、~/.bash_profile或~/.profile或~/.bash_login(login shell会读)

  Bash在读完了整体环境配置的/etc/profile并借此调用其他配置文件后,接下来就轮到读取用户的个人配置文件。

  在我的Linux系统中是~/.profile文件,其内容为:

# if running bash
if [ -n "$BASH_VERSION" ]; then
    # include .bashrc if it exists
    if [ -f "$HOME/.bashrc" ]; then
    . "$HOME/.bashrc"
    fi
fi

# set PATH so it includes user's private bin directories
PATH="$HOME/bin:$HOME/.local/bin:$PATH"
~/.profile

 

  这个文件内也有设置PATH这个变量(追加设置??)。

  此文件内容还包括读入~/.bashrc的设置。(读入配置文件的方式为“. 配置文件”或“source 配置文件”)

  故我们可以知道,在login shell环境下,最终被读取的配置文件是“~/.bashrc”这个文件。所以我们可以将自己的偏好设置写入该文件。

 

七、读取配置文件

  方式1:source 配置文件

  方式2:. 配置文件

  作用:将配置文件的内容读进目前的shell环境中,于是配置文件中的设置便会立刻生效。

 

八、~/.bashrc(non-login shell会读)

  这是non-login shell的环境配置文件。

  当我们取得non-login shell时,仅会读取~/.bashrc这一配置文件。

  以一般用户身份登录,其内容为:

# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples

# If not running interactively, don't do anything
case $- in
    *i*) ;;
      *) return;;
esac

# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth

# append to the history file, don't overwrite it
shopt -s histappend

# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000

# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize

# If set, the pattern "**" used in a pathname expansion context will
# match all files and zero or more directories and subdirectories.
#shopt -s globstar

# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"

# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
    debian_chroot=$(cat /etc/debian_chroot)
fi

# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
    xterm-color|*-256color) color_prompt=yes;;
esac

# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
#force_color_prompt=yes

if [ -n "$force_color_prompt" ]; then
    if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
    # We have color support; assume it's compliant with Ecma-48
    # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
    # a case would tend to support setf rather than setaf.)
    color_prompt=yes
    else
    color_prompt=
    fi
fi

if [ "$color_prompt" = yes ]; then
    PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt

# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
    PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
    ;;
*)
    ;;
esac

# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
    test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
    alias ls='ls --color=auto'
    #alias dir='dir --color=auto'
    #alias vdir='vdir --color=auto'

    alias grep='grep --color=auto'
    alias fgrep='fgrep --color=auto'
    alias egrep='egrep --color=auto'
fi

# colored GCC warnings and errors
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'

# some more ls aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'


# Add an "alert" alias for long running commands.  Use like so:
#   sleep 10; alert
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'

# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.

if [ -f ~/.bash_aliases ]; then
    . ~/.bash_aliases
fi

# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if ! shopt -oq posix; then
  if [ -f /usr/share/bash-completion/bash_completion ]; then
    . /usr/share/bash-completion/bash_completion
  elif [ -f /etc/bash_completion ]; then
    . /etc/bash_completion
  fi
fi
~/.bashrc

    这个文件内规定了一些命令别名、HISTSIZE等。

  最重要的是它会主动调用类似~/.bash_aliases、/usr/share/bash-completion/bash_completion这些文件。

  调用这些文件可以帮我们的bash更完整,譬如会帮助定义以下数据:

  • 依据不同的UID规定umask值;
  • 依据不同的UID规定提示符(就是PS1变量);
  • 调用/etc/profile.d/*.sh的设置。

 

九、其他影响bash的配置文件

  • /etc/man.config:这个文件的内容规定了使用man的时候man page的路径到哪里去寻找。即规定了执行man的时候该去哪里查看数据的路径设置。对于系统管理员而言,这个文件很重要。
  • ~/.bash_history:这个文件记录历史命令。每次登陆bash后,bash会先读取这个文件,将所有的历史命令读入内存。
  • ~/.bash_logout:这个文件记录了当我注销bash后系统再帮我做完什么操作后才离开。

 

十、终端机的环境设置

  设置在tty1~tty6这六个命令行界面的终端机的环境。

  目前使用的Linux distributions都帮我们设置了最棒的用户环境,所以我们可以不用设置。

  命令:stty、set

 

转载于:https://www.cnblogs.com/xzxl/p/7610181.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值