linux shell中不显示路径了,显示为-bash-4.1#的两种解决办法

时间:2021-02-08 20:25:09

出现这个问题的原因是因为没有配置.bash_profile的问题,或者是我们不小心清空或删除了.bash_profile文件。

办法一:修改 ~/.bash_profile文件

步骤如下:

vim ~/.bash_profile

(不用管.bash_profile这个文件有几个,自己新建一个也是可以的)

在最后加上

export PS1='[\u@\h \W]\$'

然后执行

source ~/.bash_profile

这样shell就可以显示路径了。

方法二:拷贝新用户到root用户

-bash-4.1# ll -a
total
dr-xr-x---.   root root   May   : .
dr-xr-xr-x.  root root   May   : ..
-rw-------.   root root   Apr  : anaconda-ks.cfg
-rw-------.   root root   May   : .bash_history
-rw-r--r--.   root root     May    .bash_logout
-rw-r--r--.   root root      May   : .bash_profile
-rw-r--r--.   root root    May   : .bashrc
-rw-r--r--.   root root    Sep    .cshrc
-rw-r--r--.   root root  Apr  : install.log
-rw-r--r--.   root root   Apr  : install.log.syslog
-rw-r--r--.   root root    Dec     .tcshrc
-rw-------.   root root    May   : .viminfo
-bash-4.1# cp -r /etc/skel/.bash* /root
-bash-4.1# chown root.root .bash*
-bash-4.1# logout    <==退出重新登录就可以正常显示路径了

Last login: Sat May   ::  from 10.0.0.1
[root@oldboyedu ~]#