安装vscode
安装插件
https://blog.youkuaiyun.com/y_m_h/article/details/104356518
查centos的ssh
yum list installed | grep openssh-server
报错
[root@localhost ~]# yum install openssh-server
已加载插件:fastestmirror, langpacks
/var/run/yum.pid 已被锁定,PID 为 3147 的另一个程序正在运行。
Another app is currently holding the yum lock; waiting for it to exit...
另一个应用程序是:PackageKit
内存:175 M RSS (1.5 GB VSZ)
已启动: Wed May 13 21:58:40 2020 - 1:28:46之前
状态 :睡眠中,进程ID:3147
Another app is currently holding the yum lock; waiting for it to exit...
另一个应用程序是:PackageKit
内存:175 M RSS (1.5 GB VSZ)
已启动: Wed May 13 21:58:40 2020 - 1:28:48之前
状态 :睡眠中,进程ID:3147
解决方法:rm -f /var/run/yum.pid
,再次运行
如果又没任何输出显示表示没有安装 openssh-server,通过输入 yum install openssh-server
打开linux的ssh
vi /etc/ssh/sshd_config
//修改:
Port 22
#AddressFamily any
ListenAddress 0.0.0.0
ListenAddress ::
systemctl start sshd.service
设置开机自动启动 sshsystemctl enable sshd.service
ssh-keygen
//一路回车
cd ~
chmod 700 .ssh
chmod 600 .ssh/*
ls -la .ssh
成功
回到win的C盘复制公匙,将它粘贴到centos的公匙中
[root@localhost ~]# cd .ssh
[root@localhost .ssh]# cat id_rsa.pub >> authorized_keys
回到vscode就可以远程了