Quartus 17 can't programm DE10 Lite on Ubuntu 16
I have installed Quartus 17 on Ubuntu 16.04 and the problem is that after select USB-Blaster and Trying to upload the programm to the DE10 Lite, always get FAILED. I was working with a EP1C3T144 but just in Windows, using Quartus 10, at that time Ubuntu never recognized USB-Blaster. Now I don't know if I forgot to install something, for the installation of Quartus, I did:
- sudo dpkg --add-architecture i386
- sudo apt-get update
- sudo apt-get install libxft2:i386 libxext6:i386 libxext6:i386 libncurses5:i386
- ./setup.sh (Quartus)
And then I also did the following for the USB-Blaster:
sudo gedit /etc/udev/rules.d/92-usbblaster.rules. And add
# USB-Blaster
SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", ATTRS{idVendor}=="09fb", ATTRS{idProduct}=="6001", MODE="0666", SYMLINK+="usbblaster/%k"
SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", ATTRS{idVendor}=="09fb", ATTRS{idProduct}=="6002", MODE="0666", SYMLINK+="usbblaster/%k"
SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", ATTRS{idVendor}=="09fb", ATTRS{idProduct}=="6003", MODE="0666", SYMLINK+="usbblaster/%k"
# USB-Blaster II
SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", ATTRS{idVendor}=="09fb", ATTRS{idProduct}=="6010", MODE="0666", SYMLINK+="usbblaster2/%k"
SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", ATTRS{idVendor}=="09fb", ATTRS{idProduct}=="6810", MODE="0666", SYMLINK+="usbblaster2/%k"
I hope someone could help me with this issue.
Thanks in advance.