小小百科网

标题: 修改Debian终端显示字体颜色,区分文件和目录 [打印本页]

作者: xiaoxiao    时间: 2016-2-9 12:04
标题: 修改Debian终端显示字体颜色,区分文件和目录
本帖最后由 xiaoxiao 于 2016-2-14 09:59 编辑

默认安装好 Debian 系统后,大家会发现用 ls 命令不带参数,不会显示彩色。可加一个 –color 参数来显示颜色
例如:
  1. ls --color
复制代码


每次都带参数未免有些麻烦,最好的方法是把它写到默认配置文件 .bashrc 里,位于用户目录。
1:因此,通过修改 .bashrc 文件,永久受益
  1. vi ~/.bashrc
复制代码


2:去掉默认的注释后,然后代码如下:
  1. # ~/.bashrc: executed by bash(1) for non-login shells.

  2. # Note: PS1 and umask are already set in /etc/profile. You should not
  3. # need this unless you want different defaults for root.
  4. # PS1='${debian_chroot:+($debian_chroot)}\h:\w\$ '
  5. # umask 022

  6. # You may uncomment the following lines if you want `ls' to be colorized:
  7. export LS_OPTIONS='--color=auto'
  8. eval "`dircolors`"
  9. alias ls='ls $LS_OPTIONS'
  10. alias ll='ls $LS_OPTIONS -l'
  11. alias l='ls $LS_OPTIONS -lA'
  12. #
  13. # Some more alias to avoid making mistakes:
  14. alias rm='rm -i'
  15. alias cp='cp -i'
  16. alias mv='mv -i'
复制代码


保存退出后,重新打开一个终端,运行 ls 命令就可以看到彩色效果了!









欢迎光临 小小百科网 (http://www.aixiaoxiao.cn/) Powered by Discuz! X3.3