从Linux系统SSH到Windows系统。
2020-12-29 03:28
标签:pow rsh ssh nss uninstall linux系统 class 主机名 tom 以管理员身份运行powershell。 显示安装了SSH client,可以ssh到其他设备。但是没有安装SSH Server,别的设备不能ssh到本机。 安装SSH Server。 启动sshd服务,并查看状态为Running。 将服务设置为自动启动。 在linux上通过ssh命令就可以连接到windows电脑上了。 从Linux系统SSH到Windows系统。 标签:pow rsh ssh nss uninstall linux系统 class 主机名 tom 原文地址:https://www.cnblogs.com/panxk/p/13290017.htmlPS 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
Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0
PS C:\Windows\system32> Start-Service sshd
PS C:\Windows\system32> Get-Service sshd
Status Name DisplayName
------ ---- -----------
Running sshd OpenSSH SSH Server
Set-Service -Name sshd -StartupType ‘Automatic‘
[root@localhost ~]# ssh username@ip地址或主机名
文章标题:从Linux系统SSH到Windows系统。
文章链接:http://soscw.com/index.php/essay/38968.html