答案1
打开终端ctrl+ alt+t并输入
nano .bashrc
按ctrl+w并输入
PS1=
然后enter- 这应该将您带到需要编辑的行,但请检查如下:
找到您的这一部分~/.bashrc
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
编辑第二行,使其显示此内容(删除@\h
)
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
保存ctrl+o然后enter退出ctrl+ o,然后在终端中输入
source ~/.bashrc