Ubuntu 16.04 版本使用SSH的步骤及方法

Ubuntu 16.04 版本使用SSH的步骤及方法

PS:首先电脑为Windows10,VM版本为12。此为前提

安装VM以及相关的系统安装这里不提。


  • 首先进入Ubuntu16.04 后,进入终端
  • 输入>sudo apt-get update
    Ubuntu 16.04 版本使用SSH的步骤及方法_第1张图片
    进行更新。


  • 因为ubuntu是没有SSH的,所以需要进行安装

    输入命令:sudo apt-get install openssh-server

Ubuntu 16.04 版本使用SSH的步骤及方法_第2张图片
* 检查服务是否启动成功:

输入: sudo ps -e |grep ssh
如果有显示sshd 表示服务启动成功
这里写图片描述
如果没有的话就手动启动:
sudo service ssh start

回车启动。


  • 使用gedit修改配置文件/etc/ssh/sshd_config获取远程ROOT权限

打开终端输入

sudo gedit /etc/ssh/sshd_config

按住Ctrl+F 找到配置文件中的
PermitRootLogin without-password
加上一个#注释掉
在它下面加上
PermitRootLogin yes

点击SAVE保存成功
Ubuntu 16.04 版本使用SSH的步骤及方法_第3张图片



  • 随后修改ssh的配置文件 /etc/ssh/sshd_config来解决无法登陆的问题
  • 输入

sudo gedit /etc/ssh/sshd_config
在配置文件的最后加入

Ciphers aes128-cbc,aes192-cbc,aes256-cbc,aes128-ctr,aes192-ctr,aes256-ctr,3des-cbc,arcfour128,arcfour256,arcfour,blowfish-cbc,cast128-cbc

MACs hmac-md5,hmac-sha1,[email protected],hmac-ripemd160,hmac-sha1-96,hmac-md5-96

KexAlgorithms diffie-hellman-group1-sha1,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1,diffie-hellman-group-exchange-sha256,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group1-sha1,[email protected]
Ubuntu 16.04 版本使用SSH的步骤及方法_第4张图片


  • 随后命令行输入

sudo reboot
重启计算机

之后便可以正常使用了。。。


后续步骤及成功截图:


  • 虚拟机IP地址获取:

ifconfig
Ubuntu 16.04 版本使用SSH的步骤及方法_第5张图片

  • 随后打开SSH SECURE SHELL
    Ubuntu 16.04 版本使用SSH的步骤及方法_第6张图片
    输入相应的地址和USER,进行连接
    Ubuntu 16.04 版本使用SSH的步骤及方法_第7张图片
  • 输入密码
    Ubuntu 16.04 版本使用SSH的步骤及方法_第8张图片

  • 连接成功


  • Ubuntu 16.04 版本使用SSH的步骤及方法_第9张图片
    有问题请联系 [email protected]

    本文地址:http://blog.csdn.net/qq_32454537/article/details/77899676

    你可能感兴趣的:(【其他】)