Ubuntu 安装 web 服务器
安装 apach
sudo apt install apache2 -y
查看 apach2 版本号
apache2 -v
检查是否启动服务器
sudo service apache2 status
检查可用的 ufw 防火墙应用程序配置
sudo ufw app list
关闭防火墙
sudo ufw disable
更改允许通过端口流量
sudo ufw allow 'Apache Full'
开启防火墙
sudo ufw enable
查看状态
sudo ufw status
检查 systemdinit 系统确保服务正在运行
sudo systemctl status apache2
安装 w3m
sudo apt-get install w3m
查看 ubuntu 的 ip
ifconfig
在 ubuntu 浏览器上查看网页
http://192.168.232.133