我已经创建了一个虚拟机(virtualbox)并且我必须安装apache2。我需要先从Windows安装它还是直接在虚拟机中安装它?
抱歉,如果这看起来是一个愚蠢的问题,但这周我将从 apache 和虚拟机开始。
答案1
在 VM 中更新存储库,安装 apache 服务器并启动服务器:
sudo apt update
sudo apt install apache2
sudo systemctl start apache2.service
然后你应该能够打开浏览器(在 Ubuntu GUI 中)并转到http://127.0.0.1
apache-servers 默认页面。
看着这个链接如果您还有其他问题。