Huion driver install

this is the bit that i don’t understand as i do not have a 11-huion-tablet.conf in the indicated directory.
i have followed all instructions and even installed kcm-wacomtablet, all that’s left now is to configure the buttons on my tablet. plz help

If you do not have the /etc/x11/xorg.conf.d/11-huion-tablet.conf file, then you create it. You ca do it from terminal with this command:

sudo touch /etc/x11/xorg.conf.d/11-huion-tablet.conf

Then you can open it with kate:

kate /etc/x11/xorg.conf.d/11-huion-tablet.conf

and add the following lines to it:

# Huion tablets
Section "InputClass"
    Identifier "Huion class"
    MatchProduct "TABLET"
    MatchIsTablet "on"
    MatchDevicePath "/dev/input/event*"
    Driver "wacom"
EndSection

Section "InputClass"
    Identifier "Huion buttons"
    MatchProduct "TABLET"
    MatchIsKeyboard "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
EndSection

Section "InputClass"
    Identifier "Huion scroll"
    MatchProduct "TABLET"
    MatchIsPointer "off"
    MatchIsKeyboard "off"
    MatchIsTouchpad "off"
    MatchIsTablet "off"
    MatchIsTouchscreen "off"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
EndSection

When you save the file you will be asked for your password. Once is saved, reboot the system and test again for available settings.