Bash不邊色了

系统安装、升级讨论
版面规则
我们都知道新人的确很菜,也喜欢抱怨,并且带有浓厚的Windows习惯,但既然在这里询问,我们就应该有责任帮助他们解决问题,而不是直接泼冷水、简单的否定或发表对解决问题没有任何帮助的帖子。乐于分享,以人为本,这正是Ubuntu的精神所在。
回复
networker
帖子: 419
注册时间: 2006-02-06 21:06
来自: Shanghai,China
联系:

Bash不邊色了

#1

帖子 networker » 2006-10-03 10:52

為什麽我的bash裏面的顏色全事白色的。
以前不是有不同顏色的麼?什麽連接和程序是不同顏色的。怎麽設置來的?
头像
eexpress
帖子: 58428
注册时间: 2005-08-14 21:55
来自: 长沙

#2

帖子 eexpress » 2006-10-03 15:35

bash??? terminal??? vim????
贴图看看
● 鸣学
networker
帖子: 419
注册时间: 2006-02-06 21:06
来自: Shanghai,China
联系:

#3

帖子 networker » 2006-10-03 18:56

就是konsole呀,里面不是有颜色显示的嘛。例如ls -l之后有的是绿色的,有的是白色的。还有其他颜色来区分不同的程序和权限什么的。怎么设置来的?
头像
eexpress
帖子: 58428
注册时间: 2005-08-14 21:55
来自: 长沙

#4

帖子 eexpress » 2006-10-03 19:34

$ cat .bashrc|grep color
# set a fancy prompt (non-color, unless we know we "want" color)
xterm-color)
# Comment in the above and uncomment this below for a color prompt
# enable color support of ls and also add handy aliases
eval "`dircolors -b`"
alias ls='ls --color=auto'
#alias dir='ls --color=auto --format=vertical'
#alias vdir='ls --color=auto --format=long'
● 鸣学
networker
帖子: 419
注册时间: 2006-02-06 21:06
来自: Shanghai,China
联系:

#5

帖子 networker » 2006-10-03 21:43

能不能帖個完整的出來呢。我的.bashrc壓根就沒有。
還要自己重寫。

代码: 全选

jerry@Ubuntu:~$ cat .bashrc
alias ll='ls -l'
alias cls='clear'
alias ls='ls --color=auto'
我事這樣寫的。顏色已經變了。不知道對不對。謝謝。
头像
eexpress
帖子: 58428
注册时间: 2005-08-14 21:55
来自: 长沙

#6

帖子 eexpress » 2006-10-03 21:51

$ cat .bashrc
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples

# If not running interactively, don't do anything
[ -z "$PS1" ] && return

# don't put duplicate lines in the history. See bash(1) for more options
export HISTCONTROL=ignoredups

# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize

# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(lesspipe)"

# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
debian_chroot=$(cat /etc/debian_chroot)
fi

# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color)
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
;;
*)
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
;;
esac

# Comment in the above and uncomment this below for a color prompt
#PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '

# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD/$HOME/~}\007"'
;;
*)
;;
esac

# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.

#if [ -f ~/.bash_aliases ]; then
# . ~/.bash_aliases
#fi

# enable color support of ls and also add handy aliases
if [ "$TERM" != "dumb" ]; then
eval "`dircolors -b`"
alias ls='ls --color=auto'
#alias dir='ls --color=auto --format=vertical'
#alias vdir='ls --color=auto --format=long'
fi

# some more ls aliases
#alias ll='ls -l'
#alias la='ls -A'
#alias l='ls -CF'

alias ll='ls -lFh'
alias la='ls -AF'
alias l='ls -CF'
alias sv='sudo vi'
alias se='sudo mousepad'
alias e='mousepad'

#-----软件包管理命令-----
alias ai='sudo apt-get install'
alias ar='sudo apt-get remove'
alias au='sudo apt-get update'
alias ag='sudo apt-get upgrade'
alias as='apt-cache search'
alias aw='apt-cache show'

#-----系统常用操作命令-----
alias pg='pgrep -l'
alias sk='sudo killall'
alias sv='sudo vi'
alias adsl='sudo pon dsl-provider'

#-----tar常用命令,后跟压缩包名,和带全路径的操作的文件名-----
alias tar_delete='tar --delete -f '
alias tar_extract='tar xPvf '
alias tar_list='tar tf '
alias tar_update='tar uPvf '

alias t.d='tar --delete -f '
alias t.x='tar xPvf '
alias t.l='tar tf '
alias t.u='tar uPvf '

# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
● 鸣学
networker
帖子: 419
注册时间: 2006-02-06 21:06
来自: Shanghai,China
联系:

#7

帖子 networker » 2006-10-04 9:22

為什麽啟動的時候他不自動讀取呢?還要手動運行?
头像
laborer
帖子: 1016
注册时间: 2005-10-25 11:15
联系:

#8

帖子 laborer » 2006-10-05 0:46

networker 写了:為什麽啟動的時候他不自動讀取呢?還要手動運行?
用adduser加的用户应该会自动把这些脚本准备好

用useradd加的用户则没有
hreiser@oakland:~$ killall -9 wife
police@oakland:~$ sudo find / -user hreiser
court@oakland:~$ sudo mv /home/hreiser /jail/
court@oakland:~$ sudo usermod -d /jail/hreiser -s "/usr/sbin/chroot /jail/" hreiser
networker
帖子: 419
注册时间: 2006-02-06 21:06
来自: Shanghai,China
联系:

#9

帖子 networker » 2006-10-05 8:18

這個用戶是系統裝好的時候加的用戶。
回复