我正在尝试使用 Angstrom Linux 在我的 BeagleBone 上找到默认的 Web 服务器目录。也就是说,我去的时候文件在哪里:
http://beaglebone.local:80
另一种方法是回答这个问题:如何使用 Angstrom Linux 在我的 BeagleBone 上找出端口号指向的目录?
我正在尝试使用 Angstrom Linux 在我的 BeagleBone 上找到默认的 Web 服务器目录。也就是说,我去的时候文件在哪里:
http://beaglebone.local:80
另一种方法是回答这个问题:如何使用 Angstrom Linux 在我的 BeagleBone 上找出端口号指向的目录?
BeagleBone|BeagleBoard Angstrom Linux 发行版附带一个套接字服务器,该服务器使用 node.js 和 bonescript 作为服务运行:
/var/lib/cloud9/bonescript/
并且可以访问:http://beaglebone.local:80
你也可以安装lighttpd
opkg install lighttpd
并将配置文件安装到
/etc/lighttpd.conf
可以更改以在任何您喜欢的地方设置默认的 Web 目录。
我发现以下工作,最终:
systemctl disable bonescript.service
systemctl disable bonescript-autorun.service
systemctl disable cloud9.service
systemctl disable bonescript.socket
使用“systemctl list-units”检查它们是否已停止。可能,您必须按照正确的顺序执行这些操作,我不得不在他们都死之前摆弄并重复这些操作。您可能只需核对 /etc/systemd/system/multi-user.target.wants 中的符号链接并重新启动。