内容简介:本文介绍如何使用 ssh 访问 VirtualBox 虚拟机。1.选择虚拟机,点击 settings。
本文介绍如何使用 ssh 访问 VirtualBox 虚拟机。
1.选择虚拟机,点击 settings。
2.点击 network。
3.点击 Advanced => Port Forwarding。
4.添加一条规则,Host Port 是本机上的端口,Guest Port 是虚拟机中对应的端口。
5.安装并启动 ssh
sudo apt-get update sudo apt-get install openssh-server sudo /etc/init.d/ssh start
6.虚拟机开启 22 端口,并重启
sudo vi /etc/ssh/sshd_config # 去掉 "Port 22" 前面的 # 号 sudo /etc/init.d/ssh restart
7.使用 ssh 连接虚拟机。
ssh -p 2222 root@127.0.0.1
8.远程主机生成密钥对
ssh-keygen -t rsa # 位于 ~/.ssh ssh-copy-id -p 2222 -f root@127.0.0.1 # 之后 ssh 就不用输密码了
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- 虚拟机中的网络连接方式
- 如何使用Xshell连接VMware上的Linux虚拟机
- VMware虚拟机Kali连接ACR122U遇到的各种坑总结
- Chrome OS 78:虚拟桌面、一键通话连接和更易用的打印等
- 微软的Azure Stack HCI:运行连接Azure的虚拟化应用程序的新选择
- tcp 长连接与短连接
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Pro Git (Second Edition)
Scott Chacon、Ben Straub / Apress / 2014-11-9 / USD 59.99
Scott Chacon is a cofounder and the CIO of GitHub and is also the maintainer of the Git homepage ( git-scm.com ) . Scott has presented at dozens of conferences around the world on Git, GitHub and the ......一起来看看 《Pro Git (Second Edition)》 这本书的介绍吧!