SimpleIDE on Linux
Franny
Posts: 127
in Propeller 1
Hi, Installed SimpleIDE on Linux Ubuntu and it recognizes the boards when plugged in but when I try to load something into the board it says "Build Failed. Check Build Status for errors" and then it says "Error is : Permission denied, error: opening serial port '/dev/ttyUSB0'" does anyone know how to fix this?
Comments
Try the following command:
and then reboot
Ray
Check group of /dev/ttyUSB0 with "ls -lh /dev/ttyUSB0" and look for the word following "root". Note that it says "dialout" on mine, which is the group owner of the file. If yours says something different, then use that in the usermod command above.
To check your username, just look at your terminal. I was typing my first post from my phone and didn't really feel like doing much googling... "$USER" was easy to type out. But if you're at all unsure, just replace "$USER" with your actual username... you can probably type that faster anyway! For me, I would run:
Because you can clearly see from the prompt in my terminal (as pasted above, with the "ls" command) that my username is "david"
Can you print the results of the following two commands?
Can you also confirm for us that you did a full reboot after running the usermod command?
The groups command shows that you are not yet in the dialout group. Can you run the usermod command again and screenshot the result? After screenshoting, reboot, plug in the propeller, and run the above ls and groups commands and take another screenshot.
Thanks David, you the best!