According to
https://ubuntu-mate.community/t/keyb...unlock/6914/29
To disable the keyboard backlight completely, including the keyboard function keys
that controls the keyboard backlight on-off-dimer switch,
Edit the Linux file:
# vim /etc/dbus-1/system.d/org.freedesktop.UPower.conf
and in the 2 lines that contain 'KbdBacklight', change from 'allow' to 'deny'.
from:
<allow send_destination="org.freedesktop.UPower.KbdBacklight"
send_interface="org.freedesktop.DBus.Properties"/>
to:
<deny send_destination="org.freedesktop.UPower.KbdBacklight"
send_interface="org.freedesktop.DBus.Properties"/>
and from:
<allow send_destination="org.freedesktop.UPower"
send_interface="org.freedesktop.UPower.KbdBacklight"/>
to:
<deny send_destination="org.freedesktop.UPower"
Asend_interface="org.freedesktop.UPower.KbdBacklight"/>
In my particular case: Asus 304AUK, Linux Mint 18.3, kernel 4.4-70, upstart,
changing only the second line one worked best for me.
For me the setting take effect immediately upon saving the file, no restart needed.