解决shell命令行只显示-bash-4.1#不显示用户和路径方法

来源:互联网 发布:淘宝网第三方支付平台 编辑:程序博客网 时间:2024/05/01 07:02

今天使用远程ssh连接NAS服务器的时候,发现不显示用户和路径,需要进行设置:

1. bashrc
在当前目录下新建.bashrc文件:
# touch ~/.bashrc# vim ~/.bashrc
并输入以下数据(注意:[]中有空格)
# .bashrc # Source global definitionsif [ -f /etc/bashrc ]; then        . /etc/bashrcfi# User specific aliases and functions
source以下使得其生效:
# source ~/.bashrc
2. bash_profile
在当前目录下新建.bash_profile文件:
# touch ~/.bash_profile# vim ~/.bash_profile
并输入以下数据
# .bash_profile # Get the aliases and functionsif [ -f ~/.bashrc ]; then        . ~/.bashrcfi
source以下使得其生效:
# source ~/.bash_profile
3.如果此时还是不能正常显示,请看下面:
步骤如下:
vi ~/.bash_profile
(不用管.bash_profile这个文件有几个,自己新建一个也是可以的) 
 
在最后加上
export PS1='[\u@\h \W]\$'
然后执行
source ~/.bash_profile
这样shell就可以显示路径了。


0 0