修改终端显示@前面的用户名

时间:2024-03-09 19:03:38

有点无聊的! 

需要在bashrc文件中修改ps1变量

gedit ~/.bashrc

 

 

修改

if [ "$color_prompt" = yes ]; then
    PS1=\'${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ \'

将\u@\h中的\u(表示用户名)改为预设置的用户名比如user

if [ "$color_prompt" = yes ]; then
    PS1=\'${debian_chroot:+($debian_chroot)}\[\033[01;32m\]user@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ \'

修改后如图

也可以修改主机名,也就是@后面的名称