码迷,mamicode.com
首页 > Windows程序 > 详细

从Linux系统SSH到Windows系统。

时间:2020-07-12 22:32:04      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:pow   rsh   ssh   nss   uninstall   linux系统   class   主机名   tom   

以管理员身份运行powershell。

PS C:\Windows\system32> Get-WindowsCapability -Online | ? Name -like OpenSSH*
Name  : OpenSSH.Client~~~~0.0.1.0
State : Installed
Name  : OpenSSH.Server~~~~0.0.1.0
State : Uninstalled

显示安装了SSH client,可以ssh到其他设备。但是没有安装SSH Server,别的设备不能ssh到本机。

Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0

安装SSH Server。

PS C:\Windows\system32> Start-Service sshd
PS C:\Windows\system32> Get-Service sshd

Status   Name               DisplayName
------   ----               -----------
Running  sshd               OpenSSH SSH Server

启动sshd服务,并查看状态为Running。

Set-Service -Name sshd -StartupType Automatic

将服务设置为自动启动。

[root@localhost ~]# ssh username@ip地址或主机名

在linux上通过ssh命令就可以连接到windows电脑上了。

 

 

 
 

从Linux系统SSH到Windows系统。

标签:pow   rsh   ssh   nss   uninstall   linux系统   class   主机名   tom   

原文地址:https://www.cnblogs.com/panxk/p/13290017.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!