Putty 在 SU 中停止显示颜色

Putty 在 SU 中停止显示颜色

正如标题所示,只要我进入 SU,我的 Putty 就会停止显示颜色。我不知道它是否应该这样工作,或者是否有其他解决方法,已经尝试过谷歌搜索,但只找到了 Putty 配色方案。

以下是我所说的内容

在此处输入图片描述

附言:我说的是所有系统颜色,比如文件夹的蓝色、用户的绿色、tars 的红色,而不仅仅是当我执行 ls 时。

答案1

看了一下这里:unix.stackexchange.com/q/256100/130000 并设法修复它,通过将其添加到我的 ~/.bashrc 中

force_color_prompt=yes

if [ -n "$force_color_prompt" ]; then
    if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
        color_prompt=yes
    else
        color_prompt=
    fi
fi

if [ "$color_prompt" = yes ]; then
    PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
     PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
 fi
 unset color_prompt force_color_prompt


case "$TERM" in
xterm*|rxvt*)
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
;;
*)
;;

相关内容