由于自己脑子一抽筋,把${HOME}目录下的配置文件都删掉了,导致终端文件没有配色了,全都变成白色自体了,经过查找资料,发现只要修改~/.bashrc就可以了,修改内容如下:

 

 
  
  1. ########################################################################## 
  2. # ~/.bashrc: executed by bash(1) for non-login shells. 
  3. # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) 
  4. # for examples 
  5.  
  6. # If not running interactively, don't do anything 
  7. [ -z "$PS1" ] && return 
  8.  
  9. # don't put duplicate lines in the history. See bash(1) for more options 
  10. # ... or force ignoredups and ignorespace 
  11. HISTCONTROL=ignoredups:ignorespace 
  12.  
  13. # append to the history file, don't overwrite it 
  14. shopt -s histappend 
  15.  
  16. # for setting history length see HISTSIZE and HISTFILESIZE in bash(1) 
  17. HISTSIZE=1000 
  18. HISTFILESIZE=2000 
  19.  
  20. # check the window size after each command and, if necessary, 
  21. # update the values of LINES and COLUMNS. 
  22. shopt -s checkwinsize 
  23.  
  24. # make less more friendly for non-text input files, see lesspipe(1) 
  25. [ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)" 
  26.  
  27. # set variable identifying the chroot you work in (used in the prompt below) 
  28. if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then 
  29.     debian_chroot=$(cat /etc/debian_chroot) 
  30. fi 
  31.  
  32. # set a fancy prompt (non-color, unless we know we "want" color) 
  33. case "$TERM" in 
  34.     xterm-color) color_prompt=yes;; 
  35. esac 
  36.  
  37. # uncomment for a colored prompt, if the terminal has the capability; turned 
  38. # off by default to not distract the user: the focus in a terminal window 
  39. # should be on the output of commands, not on the prompt 
  40. force_color_prompt=yes 
  41.  
  42. if [ -n "$force_color_prompt" ]; then 
  43.     if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then 
  44. # We have color support; assume it's compliant with Ecma-48 
  45. # (ISO/IEC-6429). (Lack of such support is extremely rare, and such 
  46. # a case would tend to support setf rather than setaf.) 
  47.         color_prompt=yes 
  48.     else 
  49.         color_prompt= 
  50.     fi 
  51. fi 
  52.  
  53. if [ "$color_prompt" = yes ]; then 
  54.     PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' 
  55. else 
  56.     PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' 
  57. fi 
  58. unset color_prompt force_color_prompt 
  59.  
  60. # If this is an xterm set the title to user@host:dir 
  61. case "$TERM" in 
  62.     xterm*|rxvt*) 
  63.     PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1" 
  64. ;; 
  65. *) 
  66. ;; 
  67. esac 
  68.  
  69. # enable color support of ls and also add handy aliases 
  70. if [ -x /usr/bin/dircolors ]; then 
  71.     test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" 
  72. alias ls='ls --color=auto' 
  73. alias dir='dir --color=auto' 
  74. alias vdir='vdir --color=auto' 
  75.  
  76. alias grep='grep --color=auto' 
  77. alias fgrep='fgrep --color=auto' 
  78. alias egrep='egrep --color=auto' 
  79. fi 
  80.  
  81. # some more ls aliases 
  82. alias ll='ls -alF' 
  83. alias la='ls -A' 
  84. alias l='ls -CF' 
  85.  
  86. # Alias definitions. 
  87. # You may want to put all your additions into a separate file like 
  88. # ~/.bash_aliases, instead of adding them here directly. 
  89. # See /usr/share/doc/bash-doc/examples in the bash-doc package. 
  90. if [ -f ~/.bash_aliases ]; then 
  91. . ~/.bash_aliases 
  92. fi 
  93.  
  94. # enable programmable completion features (you don't need to enable 
  95. # this, if it's already enabled in /etc/bash.bashrc and /etc/profile 
  96. # sources /etc/bash.bashrc). 
  97. if [ -f /etc/bash_completion ] && ! shopt -oq posix; then 
  98. . /etc/bash_completion 
  99. fi 
  100.  
  101. ########################################################################## 

done.