欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Centos7 修改hostname 主机名的颜色

程序员文章站 2022-03-12 20:08:34
...

1.修改 .bashrc

vim .bashrc. #这是这个文件中最原始的内容
# .bashrc

# User specific aliases and functions

alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'

# Source global definitions
if [ -f /etc/bashrc ]; then
        . /etc/bashrc
fi


#在本文件最后添加以下内容
xport PS1="\[\033]2;\h:\u\w\007\033[32;1m\]\[email protected]$ip\033[35;1m\t\033[0m\[\033[34;1m\]\w\[\033[0m\]\[\e[31;1m\] # \[\e[0m\]"

#使生效
source .bashrc

标题2.前后对比图

修改前
Centos7 修改hostname 主机名的颜色
修改后
Centos7 修改hostname 主机名的颜色

相关标签: centos基础设置