oracle visualbox 的Ubuntu系统 安装 ssh操作 步骤
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle visualbox 的Ubuntu系统 安装 ssh操作 步骤相关的知识,希望对你有一定的参考价值。
1、首先安装 ssh server
sudo apt-get install openssh-server
2、安装完毕后,修改配置文件 /etc/ssh/sshd_config
gedit /etc/ssh/sshd_config
找到PermitRootLogin prohibit-password,加上#注释
在后边加上一句:PermitRootLogin yes,然后保存
重启服务: service sshd restart
3、以上操作后,ssh客户端仍然报错:algorithm negotiation failed
则继续修改 /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 桌面下打开 浏览器查找后复制,否则内容不好从windows复制到 Ubuntu。
以上是关于oracle visualbox 的Ubuntu系统 安装 ssh操作 步骤的主要内容,如果未能解决你的问题,请参考以下文章