Skip to content

Instantly share code, notes, and snippets.

@fxkraus
Last active July 2, 2017 08:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fxkraus/d5012234cf53320e1da5275ef39612fa to your computer and use it in GitHub Desktop.
Save fxkraus/d5012234cf53320e1da5275ef39612fa to your computer and use it in GitHub Desktop.
Malduino 'can't open device "/dev/ttyACM0": Device or resource busy' on Ubuntu

Malduino 'can't open device "/dev/ttyACM0": Device or resource busy' on Ubuntu

Set Permissions

Add your user to the 'dialout' group

sudo usermod -aG dialout yourusername

(optional) Verify:

groups

'dialout' should be in the included in the list of groups.

Create udev Rule

sudo vi /etc/udev/rules.d/77-arduino.rules

File content:

ATTRS{idVendor}=="1b4f", ENV{ID_MM_DEVICE_IGNORE}="1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment