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

  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() 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() 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()
HISTSIZE=
HISTFILESIZE= # 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()
[ -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 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-). (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 ; alert
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[-]\+\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

最新文章

  1. DOM解析示例
  2. 优才网Go名库讲解全套教程
  3. WCF分分钟入门
  4. SSH新学
  5. android 5.0 webview坑
  6. Mysql note
  7. 0329 复利计算器5.0 Juint单元测试 组员 254列志华 253韩麒麟
  8. 阿里云服务器Node环境配置
  9. 李洪强iOS开发之代理
  10. 捉虫记2:windows程序句柄泄露的上下文环境
  11. Swift 2.0基本语法
  12. 成员方法的this指针
  13. Android网络:开发浏览器(五)——功能完善之保存图片实现
  14. Yii2访问自定义模块下的controller
  15. hashChange & url change & QRCode & canvas to image
  16. jquery常用语句
  17. 如何改变Android标准键的颜色?
  18. HttpListener通讯成功案例
  19. Tether USDT 节点钱包的安装与使用-omni layer
  20. 跳过复制错误——sql_slave_skip_counter

热门文章

  1. SpringBoot非官方教程 | 第二十篇: 处理表单提交
  2. DHTML---HTML5
  3. PL/SQL 用户自定义子类型
  4. D - 湫湫系列故事——减肥记II
  5. ABAP术语-Database Rollback
  6. 如何解决tomcat中的应用报java.io.IOException: 您的主机中的软件中止了一个已建立的连接
  7. jQuery做一个小小的移动图片的位置
  8. 吐血分享:QQ群霸屏技术教程2017(问题篇)
  9. python+matplotlib 绘制等高线
  10. 我是一个MySQL小白