Forum Discussion
Altera_Forum
Honored Contributor
12 years agoHi
The solution from lyrez did not work for me. I'm using (inside a VM with USB-Passthrough):Linux 3.10.30-1-MANJARO# 1 SMP Fri Feb 14 06:07:50 UTC 2014 x86_64 GNU/Linux
and
Quartus II 32-bit Version 13.1.0 Build 10/23/2013 SJ Web Edition
The following line inside a udev-rules-file "/etc/udev/50-embedded-devices.rules" did the trick though: SUBSYSTEM=="usb", ATTRS{idVendor}=="09fb", ATTRS{idProduct}=="6001", GROUP="users", MODE="0666"
This should work for Arch Linux in general (Manjaro is a linux distribution based on Arch Linux). I used the following resource as starting point: https://wiki.archlinux.org/index.php/udev --- Quote Start --- Hi, For udev issues, you just need to create a rule; for this purpose, just copy and paste the following into a text editor (gedit for example) : SUBSYSTEM=="usb", ATTRS{idVendor}=="09fb", ATTRS{idProduct}=="6001", GROUP="plugdev", MODE="0666", SYMLINK+="usbblaster"
Pay attention to not add line brakes ! then , you save it as : 40-usbblaster.rules then copy (with root privileges) into : /etc/udev/rules.d After a reboot, it should work ... (I'm a debian user, it may be a bit different on another distribution, i should be able to help in such a case ! And i presume you are using a usbblaster or some kind of) --- Quote End ---