Tag: beagleboard

无法在BeagleBone上的Cloud9中运行bonescript文件

我无法使用Cloud9 IDE运行使用预装版本的Angstrom Linux在BeagleBone上使用bonescript的文件。 我在OSX 10.7上的Chrome 18中使用了http://beaglebone.local:3000上的 Cloud9。 当我运行Bonescript blinkled.js示例代码时,Cloud9输出此错误: Output node.js:134 throw e; // process.nextTick error, or 'error' event on first tick ^ Error: Cannot find module '/var/lib/cloud9' at Function._resolveFilename (module.js:326:11) at Function._load (module.js:271:25) at Array.<anonymous> (module.js:430:10) at EventEmitter._tickCallback (node.js:126:26) 如果我尝试在运行configuration中添加一个文件path,就像在这个StackOverflow问题中所build议的那样,我在控制台(明亮的红色的心里)中得到这个错误: [C9 Server Exception 2] undefined 此时Cloud9也停止响应,我不得不重新加载页面以尝试进一步使用它。 如果我添加“blinkled.js”作为文件path,我得到这个错误: 'inotify' not loaded If desired, try installing […]

如何释放一个beaglebone上的端口80,以便我可以使用它?

我有一个configurationlighttpd运行的beaglebone。 目前我有它运行在8080端口,它工作正常。 除了我真的想在端口80上使用它。不幸的是,它不会在端口80上启动,因为它会失败并报告端口已被使用。 当我通过端口80上的HTTP访问beaglebone时,当然我得到了beaglebone 101屏幕。 本页build议我运行systemctl disable bone101.service但该服务甚至不存在于我的Angstrom版本中。 我使用的Angstrom img我从这里得到,这是Angstrom-Cloud9-IDE-GNOME-eglibc-ipk-v2012.12-beaglebone-2013.04.13.img.xz 。 我目前正在运行以下所有的禁用: systemctl disable cloud9.service systemctl disable gateone.service systemctl disable bonescript.service systemctl disable bonescript-autorun.service systemctl disable avahi-daemon.service systemctl disable gdm.service # this disables the Gnome desktop which is maybe irrelevant here, but saves a ton of memory 但是我仍然在80端口上遇到问题。 我知道node.js是提供内容,但即使ps aux显示node.js没有运行(我可以杀死它),似乎再次访问端口调用node.js。 我怎样才能一劳永逸地禁用端口80,所以我可以释放它为lighttpd使用? 这里是ps aux的完整输出: root 1 […]