On Tue, Aug 29, 2017 at 8:33 PM, William B <[email protected]> wrote: > Hi! I created an app in NodeJS for Beaglebone and I don't want anyone to > have access to the code via Cloud9 or any other way. My questions are: > > 1) How to disable the Cloud9 IDE on Beaglebone Black? I've already tried > "systemctl disable cloud9.service" but it did not work. Even after > restarting the BBB, Cloud9 still works; > > 2) What else is it necessary to disable at BBB?
you need to disable the socket too: sudo systemctl stop cloud9.service || true sudo systemctl stop cloud9.socket || true Regards, -- Robert Nelson https://rcn-ee.com/ -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to the Google Groups "BeagleBoard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/beagleboard/CAOCHtYjcrEKYOSzQwtezOXUHYHkFuc3ZB8AskPtv8EYdfxNrnQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
