[2025-jun-17] The SlackDocs mailing lists at https://lists.alienbase.nl/mailman/listinfo have been retired. No one has been using these lists for years and it's time to say goodbye. The list archives remain available at https://scalzi.slackware.nl/mailman/listinfo/slackdocs
[2025-jun-17] The SlackDocs Wiki has moved to a new server, in order to make it more performant.
Tabla de Contenidos
(Handy) udev RULES
chmod ttyUSB y ttyACM
(útil para ejecutar cosas como el IDE de Arduino como usuario normal)
1) Crea el archivo de reglas udev:
como root
vi /etc/udev/rules.d/50-usb.rules and add one of the following
Allow access by everyone (kinda un-safe)
KERNEL=="ttyUSB[0-9]*",MODE="0666" KERNEL=="ttyACM[0-9]*",MODE="0666"
Allow access by members of the 'wheel' group-
KERNEL=="ttyUSB[0-9]*",GROUP="wheel",MODE="0660" KERNEL=="ttyACM[0-9]*",GROUP="wheel",MODE="0660"