Skip to content

Instantly share code, notes, and snippets.

@ceiborg
Created March 17, 2024 23:41
Show Gist options
  • Save ceiborg/41f5bb97be0c1c97dd191d5b7b102b14 to your computer and use it in GitHub Desktop.
Save ceiborg/41f5bb97be0c1c97dd191d5b7b102b14 to your computer and use it in GitHub Desktop.
Configure Arduino devices on manjaro
1. add a dev rule for usb serial devices:
# /etc/udev/rules.d/01-ttyusb.rules
SUBSYSTEMS=="usb-serial", TAG+="uaccess", MODE="0666"
2. reload rules
sudo udevadm control --reload
3. add yourself to uucp group
sudo usermod -aG uucp $USER
4. reload groups
newgrp uucp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment