1 故障
[[email protected] ~]# hostnamectl set-hostname --static master.host.com [[email protected] ~]# exec -l bash [[email protected] ~]# [[email protected] ~]# exec -l bash [[email protected] ~]# exec -l bash [[email protected] ~]# 登出 #更改主机名格式为FQDN,不生效,重启也一样
2 原因
$PS1环境变量影响导致的,添加以下行至 /etc/profile 末尾即可
export PS1="[\[\e[01;32m\]\u\[\e[31;1m\]@\[\e[33;1m\]\H \[\e[01;34m\]\w\[\e[00m\]] \[\e[0;36m\]<\t>\[\e[0m\]\[\e[1;31m\]\$\[\e[0m\]" [[email protected] ~]# source /etc/profile [[email protected] ~] <16:38:42>$
或者,使用最简单的方法: 更改 /etc/bashrc 中$PS1环境变量
[ "$PS1" = "\\s-\\v\\\$ " ] && PS1="[\[email protected]\h \W]\\$ " #将这行改为以下,即h改为H,W改为w [ "$PS1" = "\\s-\\v\\\$ " ] && PS1="[\[email protected]\H \w]\\$ "
3 附$PS1环境变量相关知识
原文地址:https://www.cnblogs.com/blog-tim/p/12546885.html
时间: 2024-09-30 18:17:24