Chinaunix首页 | 论坛 | 博客
  • 博客访问: 635186
  • 博文数量: 79
  • 博客积分: 2616
  • 博客等级: 少校
  • 技术积分: 1036
  • 用 户 组: 普通用户
  • 注册时间: 2010-11-28 17:41
个人简介

苏北下邳附近人氏, 跟项羽、刘邦老乡,吕布很不幸,死在俺家门口那块小麦田上。 爱好家乡的小麦煎饼、盐豆子! 新浪微博:@dodolovely

文章分类

全部博文(79)

文章存档

2013年(2)

2012年(67)

2011年(1)

2010年(9)

分类: LINUX

2012-08-01 10:30:58

在linux下面我们有时在使用时,终端的显示界面面现:

-bash-2.05b$                                   <显示不正常>

而且终端的彩色的显示也没了,如下方法应该能解决:


一、首先确认你的用户目录下有下面这两个文件:

    1、~/.bashrc

    2、~/.bash_profile


二、如果没有,那就创建这两个文件吧,并在这两个文件中加入以下内容:

  

  文件 ~/.bashrc内容:


点击(此处)折叠或打开

  1. # .bashrc
  2. # User specific aliases and functions
  3. # Source global definitions
  4. if [ -f /etc/bashrc ]; then
  5.         . /etc/bashrc
  6. fi


  文件 ~/.bash_profile内容:


点击(此处)折叠或打开

  1. # .bash_profile
  2. # Get the aliases and functions
  3. if [ -f ~/.bashrc ]; then
  4.         . ~/.bashrc
  5. fi
  6. # User specific environment and startup programs
  7. export BASH_ENV=$HOME/.bashrc

三、还跟/etc/bashrc这个文件有关,如果没有,那也创建吧,其内容如下:

  文件/etc/bashrc内容:


点击(此处)折叠或打开

  1. # /etc/bashrc
  2. # System wide functions and aliases
  3. # Environment stuff goes in /etc/profile
  4. # Uncomment if you liked the old colourfull prompt
  5. # PS1='\[\033[1;33m\]\u\[\033[1;37m\]@\[\033[1;32m\]\h\[\033[1;31m\]\w\[\033[1;36m\]\$ \[\033[0m\]'
  6.  
  7. PS1='\[\033[0;34m\]\h (\[\033[0;31m\]\u\[\033[0;34m\]) \[\033[0;32m\]\w $ \[\033[0m\]'
  8.  
  9. VIM="/usr/share/vim"
  10.  
  11. alias ls='ls --color=tty -F -b -T 0

经过上面的三步一般都会成功的,你只要重开一个终端就可以看出效果了。

当然这还跟/etc/hosts, /etc/passwd等文件相关,但一般就是上面的哪个文件没有或出错了的。

阅读(2331) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~