测试环境:ubuntu20.04
1. 远程ssh不显示颜色解决方法
修改~/.bashrc
, 使变量force_color_prompt=yes存在, 修改成功后执行source ~/.bashrc
使配置文件生效
#force_color_prompt=yes
force_color_prompt=yes
2. ssh连入linux服务器~/.bashrc不执行的方法
在~/.bash_profile文件内添加以下脚本,并执行 source ~/.bash_profile。
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi