我正在尝试使用Angstrom Linux在我的BeagleBone上找到默认的Web服务器目录。也就是说,当我去的地方服务的文件在哪里:
http://beaglebone.local:80
另一种方法是回答这个问题:如何在Angstrom Linux的BeagleBone上找到端口号指向的目录?
答案 0 :(得分:7)
BeagleBone | BeagleBoard Angstrom Linux发行版附带一个套接字服务器,该服务器使用node.js和bonescript作为服务运行:
/var/lib/cloud9/bonescript/
可以访问:http://beaglebone.local:80
您还可以使用
安装lighttpdopkg install lighttpd
并将配置文件安装到
中/etc/lighttpd.conf
可以更改为在任何您喜欢的位置设置默认Web目录。
答案 1 :(得分:1)
我发现以下情况有效:
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中修改符号链接并重新启动。