1原因
使用CentOS7时,出现了-bash-4.2$,而不再是username@localhost格式,是因为用户路径/home/username下的配置文件丢失了。
.bashrc
.bash_profile
2解决办法
复制配置文件到用户目录下。
cp /etc/skel/.bashrc ~/.bashrc
cp /etc/skel/.bash_profile ~/.bash_profile
在当前terminal source
source ~/.bashrc
或者,重新打开新的terminal。