在 Linux 虚拟盒设备上配置 SSH

在 Linux 虚拟盒设备上配置 SSH

我在我的 ubuntu 笔记本电脑上安装了 bitnami LAMP 设备 (7.3)。开始很好。我需要让 Putty 使用它,以便加载我的应用程序。

对于网络,我尝试对适配器 1 使用桥接适配器。我在网络上使用无线。

我的理解是,使用桥接适配器时存在无线问题。我尝试使用以下命令启用 SSH:

sudo rm -f /etc/ssh/sshd_not_to_be_run
sudo systemctl enable ssh
sudo systemctl start ssh

之后我用 sudo 检查状态systemctl status ssh但我得到

Loaded: loaded
Active: inactive (dead)
Condition: start condition failed. 
ConditionPathExists=!/etc/ssh/sshd_not_to_be_run

我想知道是否应该放弃网桥配置,而使用网络 NAT 并仅使用适配器 2 的主机?你会如何解决这个问题?

相关内容