Last active
October 4, 2024 10:08
-
-
Save planetacomputer/bae73143fdb1f8160572ae0984999b2e to your computer and use it in GitHub Desktop.
Resolució incidència Edison en Notebooks amb Linkat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Create rule | |
| touch /etc/udev/rules.d/60-edison.rules | |
| echo 'SUBSYSTEM=="usb", ATTR{idVendor}=="16d0", MODE="0664", GROUP="plugdev"' >> /etc/udev/rules.d/60-edison.rules | |
| # Add current user to plugdev group | |
| usermod -a -G plugdev $USER | |
| # Reload udev rules | |
| udevadm control --reload-rules |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment