Hello again,<br><br>First of all, I&#39;d like to thank everyone that helped me on my other thread, about adapting a software to run as an activity on XO. Thanks to you all, I was able to do it.<br><br>But now, I&#39;m facing another problem regarding the permissions olpc user has to access diferent dispositives on XO. The software I adapted uses the USB port to communicate with an external module, to which it will send a compiled code. It&#39;s an graphical programming tool, with the purpose of robotics teaching. The problem is, since OLPC user doesn&#39;t have enough permissions to access the ports, we can&#39;t send the compiled code to the external module, unless we manually change the permissions to do so. So, my question is, is there any way to do it without having to do it manually for every machine we install or activity in ?<br>
<br>Just in case, the device our activity is trying to access is<br><br>/dev/ttyACM0<br><br>Using ls -l /dev/ttyACM0 we see that the its access permission is uucp while the group of our activity is olpc.<br><br>Using chmod o=rw /dev/ttyACM0 solves the problem.<br>
<br>Thanks again<br><br>