Skip to content

Instantly share code, notes, and snippets.

@natewalck
Created January 1, 2026 23:09
Show Gist options
  • Select an option

  • Save natewalck/45475ef0d443b600b75b1fe71429eeec to your computer and use it in GitHub Desktop.

Select an option

Save natewalck/45475ef0d443b600b75b1fe71429eeec to your computer and use it in GitHub Desktop.

To setup Carvera controller (and pendant) on ArchLinux, a udev rule must be created.

  1. Add a new udev file:
sudo vim /etc/udev/rules.d/99-carverausb.rules
  1. Add the following contents:
# Carvera Air USB Serial Device
SUBSYSTEM=="tty", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", MODE="0666"

# Jog Pendant USB device
SUBSYSTEM=="tty", ATTRS{idVendor}=="10ce", ATTRS{idProduct}=="eb93", MODE="0666"
  1. After saving and closing the file, reload the rules:
sudo udevadm control --reload-rules
sudo udevadm trigger
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment