我通过 ssh 登录的其中一台机器没有给我一个彩色提示,尽管它是通过.bashrc
. 有问题的.bashrc
部分是
# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color|*-256color) color_prompt=yes;;
esac
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
force_color_prompt=yes
if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi
if [ "$color_prompt" = yes ]; then
if [ $(id -u) -eq 0 ];
then # you are root, make the prompt red
PS1='${debian_chroot:+($debian_chroot)}\[\e[00;33m\]\u\[\e[00m\]@\[\e[00;34m\]\h\[\e[00m\]:\[\e[00;36m\]\w\[\e[00m\]\e[01;31m#\e[00m '
else
PS1='${debian_chroot:+($debian_chroot)}\[\e[00;32m\]\u\[\e[00m\]@\[\e[00;34m\]\h\[\e[00m\]:\[\e[00;36m\]\w\[\e[00m\]$ '
fi
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt
我在其他几台机器上使用它并获得所需的结果。
我不知道为什么这台特定的计算机不使用 this .bashrc
。如果我使用
export PS1='${debian_chroot:+($debian_chroot)}\[\e[00;32m\]\u\[\e[00m\]@\[\e[00;34m\]\h\[\e[00m\]:\[\e[00;36m\]\w\[\e[00m\]$ '
(上面的行),我的提示得到了所需的格式。/etc/bash.bashrc
也存在,/etc/profile
在我看来都不错。
另外,如果我 ssh 进入这台计算机,xterm 标题不会被设置。通常,它被设置为这台机器的 user@host。我怀疑同样的根本原因,但我不知道去哪里找。
使用 ssh 时,您将获得登录 shell。
从
~/.profile
因此,请确保此文件存在于您尝试登录的用户的主目录中。如果它不存在,则创建文件并
~/.bashrc
通过键入以下内容强制它读取文件 -