« | August 2025 | » | 日 | 一 | 二 | 三 | 四 | 五 | 六 | | | | | | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | | | | | | | |
| 登录 |
| 联系我 email: binaryluo(at)gmail.com
Blog信息 |
blog名称:二进制-虚心使人进步,骄傲使人落后。 日志总数:42 评论数量:370 留言数量:88 访问次数:638903 建立时间:2005年2月19日 |

| |
[Linux学习与研究]Debian ls 目录颜色在深色背景下过暗的解决方法 原创空间, 软件技术, 电脑与网络
binaryluo 发表于 2007/8/6 11:46:37 |
1. 修改~/.bashrc中:
# enable color support of ls and also add handy aliasesif [ "$TERM" != "dumb" ]; then #eval "`dircolors -b`" eval "`dircolors ~/.dircolors`" alias ls='ls --color=auto' #alias dir='ls --color=auto --format=vertical' #alias vdir='ls --color=auto --format=long'fi
2. $dircolors -p > ~/.dircolors
3. 修改~/.dircolors中的:" DIR 01;34 # directory " 为自己喜欢的颜色(共有8种颜色可选,具体请看.dircolors注释),我的改为:
DIR 01;37 # directory
|
|