1.普通用户登录然后进入root
sudo -s
(输入普通用户密码)
2,开启SSH服务,如果没有开启需要安装openssh-server:
sudo apt-get install openssh-server
(安装中选择“y”)
3,查看是否启动
ps -e | grep ssh
如果只有ssh-agent (一行)表示还没启动
需要/etc/init.d/ssh start;
有sshd说明已启动
4,查看ubuntu的ip地址
ifconfig
5,xshell中
ssh <ubuntu的ip>
原文地址:http://blog.csdn.net/u010834795/article/details/45008701