Thread: [DIGImend-users] huion 610 & v5 driver
Brought to you by:
spb_nick
From: <dm...@li...> - 2015-03-27 07:13:35
|
Hi, I'm strugling with the digimend v5 driver for a Huion 610 tablet on lubuntu. Out of the box the tablet controls the cursor but generates multiple button presses which will for instance open ten or more windows on a tray icon click. I have tried the tablet in windows with it's own driver and it works correctly. When I try to "make" the modules I get this message: make -C /lib/modules/3.13.0-37- generic/build SUBDIRS=/home/steph/Downloads/digimend-kernel-drivers-5 modules make[1]: *** /lib/modules/3.13.0-37-generic/build: No such file or directory. Stop. Makefile:10: recipe for target 'modules' failed make: *** [modules] Error 2 I don't have a dir /lib/modules/3.13.0-37- generic/build on my system. I have tried adding the directory manually but then I get this error message instead: make -C /lib/modules/3.13.0- 37-generic/build SUBDIRS=/home/steph/Downloads/digimend-kernel-drivers- 5 modules make[1]: Entering directory '/lib/modules/3.13.0-37- generic/build' make[1]: *** No rule to make target 'modules'. Stop. make [1]: Leaving directory '/lib/modules/3.13.0-37-generic/build' Makefile: 10: recipe for target 'modules' failed make: *** [modules] Error 2 Again that file is not on my system. I'm guessing it's the hid-rebind. rules that comes in the digimen-kernel-drivers-5 package. I have also tried the version 4 driver with the same results. Please could you advise as I'm right at the limit of my understanding of linux. Thanks Martin. |
From: Nikolai K. <sp...@gm...> - 2015-03-27 10:05:59
|
Hi Martin, On 03/27/2015 09:13 AM, dm...@li... wrote: > Hi, > I'm strugling with the digimend v5 driver for a Huion 610 tablet on > lubuntu. Out of the box the tablet controls the cursor but generates > multiple button presses which will for instance open ten or more > windows on a tray icon click. I have tried the tablet in windows with > it's own driver and it works correctly. > When I try to "make" the > modules I get this message: > > make -C /lib/modules/3.13.0-37- > generic/build SUBDIRS=/home/steph/Downloads/digimend-kernel-drivers-5 > modules > make[1]: *** /lib/modules/3.13.0-37-generic/build: No such file > or directory. Stop. > Makefile:10: recipe for target 'modules' failed > > make: *** [modules] Error 2 That means you don't have kernel headers installed and the driver is not being built nor installed. If you're using Ubuntu you can try installing them with this command: sudo apt-get install linux-headers-$(uname -r) And then try to build and install the driver again. Nick |
From: Nikolai K. <sp...@gm...> - 2015-03-27 20:26:17
|
Hi Martin, Please keep the maillist in the CC. Thank you. See my reply below. On 03/27/2015 10:04 PM, mk wrote: > On Fri, 27 Mar 2015 12:06:06 +0200 > Nikolai Kondrashov <sp...@gm...> wrote: > On 03/27/2015 09:13 AM, dm...@li... wrote: >> Hi, >> I'm strugling with the digimend v5 driver for a Huion 610 tablet on >> lubuntu. Out of the box the tablet controls the cursor but generates >> multiple button presses which will for instance open ten or more >> windows on a tray icon click. I have tried the tablet in windows with >> it's own driver and it works correctly. >> When I try to "make" the >> modules I get this message: >> >> make -C /lib/modules/3.13.0-37- >> generic/build SUBDIRS=/home/steph/Downloads/digimend-kernel-drivers-5 >> modules >> make[1]: *** /lib/modules/3.13.0-37-generic/build: No such file >> or directory. Stop. >> Makefile:10: recipe for target 'modules' failed >> >> make: *** [modules] Error 2 > > That means you don't have kernel headers installed and the driver is not being > built nor installed. > > If you're using Ubuntu you can try installing them with this command: > > sudo apt-get install linux-headers-$(uname -r) > > And then try to build and install the driver again. > > Nick > > Thanks for the reply Nick. > > Tried to sudo apt-get install linux-headers-$(uname -r) > > Got this message: > > Reading package lists... Done > Building dependency tree Reading package lists... Done > Building dependency tree > Reading state information... Done > Package linux-headers-3.13.0-37-generic is not available, but is referred to by another package. > This may mean that the package is missing, has been obsoleted, or > is only available from another source > > E: Package 'linux-headers-3.13.0-37-generic' has no installation candidate > > Tried Lubuntu Software Centre to install: > linux-headers-3.13.0-37-generic > but it freezes. > > Synaptic lists that package as obsolete which may explain the above so I used synaptic to install the next available kernel: > > linux-headers-3.16.0-23 (i386) > linux-headers-3.16.0-23-generic (i386) > linux-image-3.16.0-23-generic (i386) > linux-image-extra-3.16.0-23-generic(i386) > > rebooted to this kernel and tried to make but got this message: > > make[1]: Entering directory '/usr/src/linux-headers-3.16.0-23-generic' > ./scripts/gcc-version.sh: line 25: gcc: command not found > ./scripts/gcc-version.sh: line 26: gcc: command not found > > I guessing I need to update something to do with a C compiler? > Yes, you need to install the compiler. You might be able to do that and also install other possible requisites by installing "build-essential" package. Nick |
From: <dm...@li...> - 2015-03-27 22:51:58
|
>> ./scripts/gcc-version.sh: line 25: gcc: command not found >> . /scripts/gcc-version.sh: line 26: gcc: command not found >> >> I guessing I need to update something to do with a C compiler? >> > >Yes, you need to install the compiler. You might be able to do that and also >install other possible requisites by installing "build-essential" package. > >Nick > Success! Gcc was not installed so I used Lubuntu Software Centre to install Gcc GNU C compiler ver 4:4.9.1-4ubuntu2(gcc) rather than build-essentials and the make / sudo make install routine worked fine. Thanks Nick for your time and knowledge, the tablet is for my girlfriend and you've put me on the good list! Martin. |
From: Nikolai K. <sp...@gm...> - 2015-03-28 18:24:54
|
On 03/28/2015 12:51 AM, dm...@li... wrote: >>> ./scripts/gcc-version.sh: line 25: gcc: command not found >>> . > /scripts/gcc-version.sh: line 26: gcc: command not found >>> >>> I > guessing I need to update something to do with a C compiler? >>> >> >> Yes, > you need to install the compiler. You might be able to do that and also > >> install other possible requisites by installing "build-essential" > package. >> >> Nick >> > > Success! > Gcc was not installed so I used Lubuntu > Software Centre to install Gcc GNU C compiler ver 4:4.9.1-4ubuntu2(gcc) > rather than build-essentials and the make / sudo make install routine > worked fine. > Thanks Nick for your time and knowledge, the tablet is for > my girlfriend and you've put me on the good list! Glad to hear that :) You're welcome. Nick |