在linux下面我们有时在使用时,终端的显示界面面现:
-bash-2.05b$ <显示不正常>
而且终端的彩色的显示也没了,如下方法应该能解决:
一、首先确认你的用户目录下有下面这两个文件:
1、~/.bashrc
2、~/.bash_profile
二、如果没有,那就创建这两个文件吧,并在这两个文件中加入以下内容:
文件 ~/.bashrc内容:
- # .bashrc
- # User specific aliases and functions
- # Source global definitions
- if [ -f /etc/bashrc ]; then
- . /etc/bashrc
- fi
文件 ~/.bash_profile内容:
- # .bash_profile
- # Get the aliases and functions
- if [ -f ~/.bashrc ]; then
- . ~/.bashrc
- fi
- # User specific environment and startup programs
- export BASH_ENV=$HOME/.bashrc
三、还跟/etc/bashrc这个文件有关,如果没有,那也创建吧,其内容如下:
文件/etc/bashrc内容:
- # /etc/bashrc
- # System wide functions and aliases
- # Environment stuff goes in /etc/profile
- # Uncomment if you liked the old colourfull prompt
- # PS1='\[\033[1;33m\]\u\[\033[1;37m\]@\[\033[1;32m\]\h\[\033[1;31m\]\w\[\033[1;36m\]\$ \[\033[0m\]'
-
- PS1='\[\033[0;34m\]\h (\[\033[0;31m\]\u\[\033[0;34m\]) \[\033[0;32m\]\w $ \[\033[0m\]'
-
- VIM="/usr/share/vim"
-
- alias ls='ls --color=tty -F -b -T 0
经过上面的三步一般都会成功的,你只要重开一个终端就可以看出效果了。
当然这还跟/etc/hosts, /etc/passwd等文件相关,但一般就是上面的哪个文件没有或出错了的。
阅读(2331) | 评论(0) | 转发(0) |