vscode 远程 linux

官网

有 linux 版本,Windows版本的,本文以Windows版本为例
https://code.visualstudio.com/docs/remote/troubleshooting#_reusing-a-key-generated-in-puttygen

插件安装

打开 vscode 安装 remote development 插件,安装成功,左下角会出现 >< 符号
具体操作如下图
vscode 远程 linux_第1张图片按图中操作,最后写入如下配置
Host 名称,随便取,貌似不能带 @ 符号
HostName 远程的主机地址,ip 域名都可以
User 连接的用户名

Host localhost  
    HostName 192.168.202.128
    User root

具体操作

打开命令行 vscode --> new terminal,进入你用户下的 .ssh目录
ls 下,如果以前没有其他什么操作,里面应该就一个 config 文件,按如下操作即可,在期间要你输入密码等

1. ssh-keygen -t rsa -b 4096

2. scp c:\Users\liu\.ssh\id_rsa.pub [email protected]:~/tmp.pub

3.ssh [email protected] "mkdir -p ~/.ssh && chmod 700 ~/.ssh && cat ~/tmp.pub >> ~/.ssh/authorized_keys && chmod 600 ~/.ssh/authorized_keys && rm -f ~/tmp.pub"

4. ssh-keygen -t rsa -b 4096 -f c:\Users\liu\.ssh\id_rsa-remote-ssh

5. scp c:\Users\liu\.ssh\id_rsa-remote-ssh.pub [email protected]:~/tmp.pub

6. ssh [email protected] "mkdir -p ~/.ssh && chmod 700 ~/.ssh && cat ~/tmp.pub >> ~/.ssh/authorized_keys && chmod 600 ~/.ssh/authorized_keys && rm -f ~/tmp.pub"

以上你要修改的就是 c 【c:\Users\liu .ssh\】盘的路径,和 用户【root】,以及 ip 【192.168.202.128】

完成之后 ,页面如下

vscode 远程 linux_第2张图片连接成功,让你选择 远程主机的目录,我选择的是 /

你可能感兴趣的:(linux)