莫名不显示用户和路径,操作时担心当前目录不对,比如使用rm时,特别担心当前操作目录不对:是因为用户目录下的.bashxxx文件缺失
第一种解决方法:1.创建".bash_profile"文件
#新建文件
vi ~/.bash_profile
# 文件内容输入,"$"后有空格,输入shell命令时更直观
export PS1='[\u@\h \W]\$ '
#重新加载内容
source ~/.bash_profile
即时生效
第二种解决方法:2.复制".bash"相关文件
#查看文件
ls -al /etc/skel
#复制文件到用户家目录
cp /etc/skel/.bash_logout ~/
cp /etc/skel/.bashrc ~/
cp /etc/skel/.bash_profile ~/
重新登录生效