解决linux的shell设置问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决linux的shell设置问题相关的知识,希望对你有一定的参考价值。

Q:今天在Ubuntu 14下普通用户ssh登录shell发现,使用ls命令查看目录时,发现文件夹和文件都是相同颜色显示!这不合理啊,linux下会根据文件类型而已不同颜色显示的啊!这样看起来才好!

A:切换到root下,一切正常。所以猜想应该是shell的设置问题。

Solve:如何设置呢?

vi ~/.bashrc


#!/bin/bash

if [ -x /usr/bin/dircolors ]; then

     test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"

    alias ls=‘ls --color=auto‘

     alias grep=‘grep --color=auto‘

     alias fgrep=‘fgrep --color=auto‘

    alias egrep=‘egrep --color=auto‘

fi

红色这一行是比较重要的。其他的都是环境判断。

~/.dircolors存储了关于颜色的配置文件,所以想修改默认颜色就得修改它。


本文出自 “Linux的shell设置” 博客,请务必保留此出处http://9486329.blog.51cto.com/9476329/1876015

以上是关于解决linux的shell设置问题的主要内容,如果未能解决你的问题,请参考以下文章

linux shell里,怎样敲入 制表符

如何避免SSH Secure Shell Client连接Linux超时,自动断开

怎么设置 SSH secure shell client 字符集

linux下中文文件名乱码解决

linux ftp服务器拒绝连接

Linux Shell 按Tab键不能补全