Skip to content Skip to main navigation Skip to footer

Xshell 远程ssh连接Ubuntu系统的方法

本文主要讲述如何使用Xshell工具远程登录ubuntu 16.04/14.04 系统的方法。
1# 从xshell 官方下载该软件并安装(http://www.netsarang.com/download/down_xsh.html)。
2# 安装openssh软件包。默认情况下,ubuntu系统没有安装Openssh服务,所以需要手动安装

$ sudo apt-get install openssh-server

3# 启动sshd 服务

$ sudo systemctl start sshd

4# 使用vi工具编辑/etc/ssh/sshd_config配置文件,找到下面的行:

PermitRootLogin prohibit-password

将上面的行改成为:

permitRootLogin yes

保存退出。
5# 重启sshd服务

$ sudo systemctl restart sshd

6# 打开xshell 工具,输入ubuntu系统的ip地址,以及用户名和密码。就可以正常登陆了。