vs code ssh登陆服务器后 显示sh-4.2的解决办法

Posted kasader

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vs code ssh登陆服务器后 显示sh-4.2的解决办法相关的知识,希望对你有一定的参考价值。

1. 查看自己账户下的 .bashrc 内容是不是正常

一般为:

# .bashrc

# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi

# Uncomment the following line if you don‘t like systemctl‘s auto-paging feature:
# export SYSTEMD_PAGER=

# User specific aliases and functions

 

如果正确 ,然后执行 . ~/.bashrc

2.查看.bash_profile内容,如果没有这个配置文件,新建

# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi 

# User specific environment and startup programs

PATH=$PATH:$HOME/.local/bin:$HOME/bin

export PATH

运行 然后执行source ~/.bash_profile,重新打开终端就恢复正常的状态了。

3.如果这些都正常但是仍然显示sh-4.2,而不是user@bogon +路径,那么看下vscode默认的bash是哪个,选/bin/bash

 

 

技术图片

 

 技术图片

 

以上是关于vs code ssh登陆服务器后 显示sh-4.2的解决办法的主要内容,如果未能解决你的问题,请参考以下文章

VS Code 远程连接 Jupyter

VS Code 远程连接 Jupyter

VS Code 远程连接 Jupyter

VS code remote x11 在连接到远程服务器时无法显示

ubuntu使用ssh登陆时,如何能获得登陆终端的ip(急)

VS Code 远程 ssh 缺少 GLIBCXX 和 GLIBC