I have a Huion h580 tablet, that I bought from dx.com and it doesn't work at ubuntu. I found this driver: https://github.com/DIGImend/huion-driver It should be installed from the source code, but what I did didn't work:
paulo@paulo-mccartney:~/Downloads/huion-driver-master$ make
make -C /lib/modules/3.13.0-24-generic/build SUBDIRS=/home/paulo/Downloads/huion-driver-master modules
make[1]: Entering directory `/usr/src/linux-headers-3.13.0-24-generic'
CC [M] /home/paulo/Downloads/huion-driver-master/hid-huion.o
Building modules, stage 2.
MODPOST 1 modules
CC /home/paulo/Downloads/huion-driver-master/hid-huion.mod.o
LD [M] /home/paulo/Downloads/huion-driver-master/hid-huion.ko
make[1]: Leaving directory `/usr/src/linux-headers-3.13.0-24-generic'
paulo@paulo-mccartney:~/Downloads/huion-driver-master$ cd /usr/src/linux-headers-3.13.0-24
paulo@paulo-mccartney:~/Downloads/huion-driver-master$ sudo make install
[sudo] password for paulo:
make -C /lib/modules/3.13.0-24-generic/build SUBDIRS=/home/paulo/Downloads/huion-driver-master modules_install
make[1]: Entering directory `/usr/src/linux-headers-3.13.0-24-generic'
INSTALL /home/paulo/Downloads/huion-driver-master/hid-huion.ko
Can't read private key
DEPMOD 3.13.0-24-generic
make[1]: Leaving directory `/usr/src/linux-headers-3.13.0-24-generic'
install -D -m 0644 hid-huion.conf /etc/depmod.d/hid-huion.conf
depmod -a
install hid-rebind /sbin
install -m 0644 hid-rebind.rules /lib/udev/rules.d/70-hid-rebind.rules
udevadm control --reload
paulo@paulo-mccartney:~/Downloads/huion-driver-master$ rmmod hid-huion
rmmod: ERROR: Module hid_huion is not currently loaded
Also found this video which installed this tablet in Debian: https://www.youtube.com/watch?v=wJ0-N0GMeXw But I don't know how to compile the kernel to support the tablet.
How could I install this driver? Thanks
insmod hid-huion.ko
as root in the directory where you have that .ko file – Jay Aurabind May 03 '14 at 05:29dmesg
output after loading the driver ? – Jay Aurabind May 03 '14 at 06:17