6

Chirp is an amateur radio program that will help program your radio from a computer. My radio is a Wouxun and the module is a KG-UV3D.The documentation says that is will work on this module, but there is not a setting for it so I got as close as I could. The cable looks like this:

Wouxun CableWhat I am trying to do is follow the instructions but I keep getting stuck. First, you click on the Radio link. Next, I click Download from Radio. From there I get this picture.

Chirp

After clicking ok, I get this error message:

could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0'

Can anyone tell me how to fix this problem? Once again, thank you in advance for any assistance you may have to offer.

K7AAY
  • 17,705
BJsgoodlife
  • 1,180

1 Answers1

11

That error means you are not allowed to access /dev/ttyS0 on your computer. Only root and users in the dialout group may access that device.

If you are running chirp as a normal user (I assume you are), the problem is probably quite simply that your user does not belong to the dialout group. Try the following command:

sudo usermod -aG dialout USERNAME

where you replace USERNAME with your own username, of course. Log out and in again, fire up chirp, it should now work.

Braiam
  • 69,112
Malte Skoruppa
  • 13,846
  • 5
  • 58
  • 65