我正在通过 SSH 从 OSX 访问 Ubuntu 10.04.2 LTS 服务器。最近颜色停止工作了。我认为这是在我安装/排除 RVM 故障时发生的,但我不确定。
在 .bashrc 中我取消了注释force_color_prompt=yes
,运行时env | grep TERM
我得到了TERM=xterm-color
。但仍然没有颜色。
有什么想法吗?谢谢!
以下是输出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
# ... or force ignoredups and ignorespace
HISTCONTROL=ignoredups:ignorespace
# append to the history file, don't overwrite it
shopt -s histappend
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000
# 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 "$(SHELL=/bin/sh 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) 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
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
# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
;;
*)
;;
esac
# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
alias dir='dir --color=auto'
alias vdir='vdir --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
fi
# some more ls aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
# 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 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 ] && ! shopt -oq posix; then
. /etc/bash_completion
fi
[[ -s "/usr/local/rvm/scripts/rvm" ]] && . "/usr/local/rvm/scripts/rvm"
答案1
.bashrc
中有一个示例默认文件/etc/skel
。您可以使用以下命令备份当前文件.bashrc
:
mv ~/.bashrc ~/.bashrc.bak
然后将该示例复制回您的主目录:
cp /etc/skel/.bashrc ~/.bashrc
之后,取消注释:
force_color_prompt=yes
在新文件中,并将以下内容添加回文件末尾(最后一行),以便 RVM 仍然有效:
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"
之后,. ~/.bashrc
在提示符下执行以重新加载您的 bash 配置文件,这将再次为您提供彩色提示并使用以下命令测试 RVM:
type rvm | head -1
返回文本:
rvm is a function
如果这不起作用,请告诉我们您是否在 Mac OS X 上使用标准终端应用程序,以及您在 Mac 上的终端中使用的配置文件。
答案2
颜色已停止工作,很可能是在您升级到狮子从雪豹。
在 Lion 中,由于某种原因,默认情况下终端被声明为“xterm-256色“ 代替 ”xterm 颜色“这就是 Ubuntu 所理解的。
其中一个选项是,正如先前的回复者所提到的,取消force_color_prompt=yes
注释~/.bashrc
另一个选项是在 Terminal.app 中将终端重新声明为 xterm-color。操作方法如下:
- 启动 Terminal.app
- 转到菜单终端->首选项(或使用 Cmd + ,)
- 转到
Settings
选项卡并找到设置为默认的主题 - 转到
Advanced
标签 - 找到旁边的下拉菜单
Declare terminal as:
并将其设置为xterm 颜色
以下是我的设置
更新: 看起来山狮删除了xterm 颜色选项完全从下拉菜单中选择。如果您正在进行升级,您很可能会保留旧配置,但如果您正在进行全新安装,则必须手动编辑终端的配置文件,为此您将需要一个 plist 编辑器(包含在XCode需要通过 App Store 安装)。终端文件的位置位于~/资源库/Preferences/com.apple.Terminal.plist为了添加xterm 颜色选项执行以下操作:
- 辞职终端应用程序如果它正在运行
- 从 App Store 安装 XCode(如果已经安装,请跳过此步骤)
$ open ~/Library/Preferences/com.apple.Terminal.plist
- 将 plist 导航至
Root > Window Settings
- 找到您的默认主题的名称(在我的情况下是 Pro)展开它并找到密钥
TerminalType
。 - 现在只需将
TerminalType
密钥更改为xterm 颜色手动 - 保存文件并启动终端。
答案3
nano ~/.bashrc
键入Ctrl+W并搜索force_color
,第一个结果应该突出显示字符f
后面的#
。
按下Backspace,然后按Ctrl+ X,然后Y按Yes
,然后按Enter。
source ~/.bashrc
或者
. ~/.bashrc
您现在将在终端中看到颜色。
我希望这对你有用。
答案4
另一种方法是,.bash_login
如果您的主目录中尚不存在文件,则创建一个文件并将其放入.bashrc
其中。
关闭终端并重新打开它——您的问题应该已经解决!