cannot turn on keyboard backlight
I am using ASUS UX303 LN, Laptop and Ubuntu Gnome 14.04 is installed on it. I cant find a way to turn on my keyboard backlight on it. The keyboard shortcut that works in windows is not working here. Please help
14.04 asus keyboard-backlight
add a comment |
I am using ASUS UX303 LN, Laptop and Ubuntu Gnome 14.04 is installed on it. I cant find a way to turn on my keyboard backlight on it. The keyboard shortcut that works in windows is not working here. Please help
14.04 asus keyboard-backlight
you must check the layout of your keyboard and change it to what fits your needs
– user284234
Jul 4 '15 at 12:50
add a comment |
I am using ASUS UX303 LN, Laptop and Ubuntu Gnome 14.04 is installed on it. I cant find a way to turn on my keyboard backlight on it. The keyboard shortcut that works in windows is not working here. Please help
14.04 asus keyboard-backlight
I am using ASUS UX303 LN, Laptop and Ubuntu Gnome 14.04 is installed on it. I cant find a way to turn on my keyboard backlight on it. The keyboard shortcut that works in windows is not working here. Please help
14.04 asus keyboard-backlight
14.04 asus keyboard-backlight
edited Jul 4 '15 at 14:10
Pilot6
53.7k15109198
53.7k15109198
asked Jul 4 '15 at 12:49
screenslaverscreenslaver
1271415
1271415
you must check the layout of your keyboard and change it to what fits your needs
– user284234
Jul 4 '15 at 12:50
add a comment |
you must check the layout of your keyboard and change it to what fits your needs
– user284234
Jul 4 '15 at 12:50
you must check the layout of your keyboard and change it to what fits your needs
– user284234
Jul 4 '15 at 12:50
you must check the layout of your keyboard and change it to what fits your needs
– user284234
Jul 4 '15 at 12:50
add a comment |
5 Answers
5
active
oldest
votes
To enable the backlight:
echo 2 | sudo tee /sys/class/leds/asus::kbd_backlight/brightness
The 2
at echo 2 |
can be changed to a value between 0 - 3, with 3 being the brightest.
To disable the backlight, enter:
echo 0 | sudo tee /sys/class/leds/asus::kbd_backlight/brightness
It works when i type in, but when I add it as a custom keyboard shortcut its not working
– screenslaver
Jul 4 '15 at 15:14
Why turning on keyboard backlight needs administrative permission?
– funicorn
Jan 11 '18 at 12:13
@funicorn because you are changing hardware features
– TellMeWhy
Jan 11 '18 at 22:50
add a comment |
Try
xset led on
or
xset led 3
This worked well with my CMSTORM (Cooler Master Storm Devastator) keyboard.
add a comment |
You can turn on backlight by this command
sudo tee /sys/class/leds/asus::kbd_backlight/brightness <<< 3
This will set it to maximum. The number at the end means brightness ( 0 - 3).
You can link this command to some hot key combination.
You can also read article regarding setting up Ambient Light Sensor.
It works when i type in, but when I add it as a custom keyboard shortcut its not working
– screenslaver
Jul 4 '15 at 15:17
2
This is actually another topic how to setup a script requiring sudo to a key combination. It must be answered already somewhere. I make a script and set that it does not require a password in sudoers.
– Pilot6
Jul 4 '15 at 15:21
add a comment |
Here's how I got it solved:
#!/bin/bash
# Adjust the keyboard backlight level
shopt -s -o nounset
declare -i KBD_BACKLIGHT_MAX=`cat /sys/class/leds/asus::kbd_backlight/max_brightness`
declare -i KBD_BACKLIGHT_LEV=`cat /sys/class/leds/asus::kbd_backlight/brightness`
# We need a parameter, etiher inc or dec
if [ $# -eq 0 ] ; then
exit 192
fi
case $1 in
-inc )
# increasing:
if [ ${KBD_BACKLIGHT_LEV} -lt ${KBD_BACKLIGHT_MAX} ] ; then
KBD_BACKLIGHT_LEV=${KBD_BACKLIGHT_LEV}+1
echo ${KBD_BACKLIGHT_LEV} | tee /sys/class/leds/asus::kbd_backlight/brightness
fi
;;
-dec )
# decreasing:
if [ ${KBD_BACKLIGHT_LEV} -gt 0 ] ; then
KBD_BACKLIGHT_LEV=${KBD_BACKLIGHT_LEV}-1
echo ${KBD_BACKLIGHT_LEV} | tee /sys/class/leds/asus::kbd_backlight/brightness
fi
;;
esac
exit 192
Save the above script in /opt/tweaks/kbd_backlight_adjust.
Then this needs to be run with sudo from a keyboard shortcut so we must add a line to sudoers.
Use visudo and add this line to the bottom:
your_username ALL=(root) NOPASSWD: /opt/tweaks/kbd_backlight_adjust
And finally create your keyboard shortcuts using these commands for increasing and decreasing the keyboard backlight:
sudo /opt/tweaks/kbd_backlight_adjust -inc
and
sudo /opt/tweaks/kbd_backlight_adjust -dec
That should do it :-)
excelent ! just missing the command chmod +x /opt/tweaks/kbd_backlight_adjust to enable of script execution.
– cgasp
Jun 4 '16 at 22:30
add a comment |
I had the same issue with an Asus ROG laptop I'd purchased. Here's what I did to fix keyboard shortcuts in general.
sudo vim /etc/default/grub
You’ll find this line:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
Simply add on to the end of it:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi="
Save, Exit and Reboot
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f644410%2fcannot-turn-on-keyboard-backlight%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
To enable the backlight:
echo 2 | sudo tee /sys/class/leds/asus::kbd_backlight/brightness
The 2
at echo 2 |
can be changed to a value between 0 - 3, with 3 being the brightest.
To disable the backlight, enter:
echo 0 | sudo tee /sys/class/leds/asus::kbd_backlight/brightness
It works when i type in, but when I add it as a custom keyboard shortcut its not working
– screenslaver
Jul 4 '15 at 15:14
Why turning on keyboard backlight needs administrative permission?
– funicorn
Jan 11 '18 at 12:13
@funicorn because you are changing hardware features
– TellMeWhy
Jan 11 '18 at 22:50
add a comment |
To enable the backlight:
echo 2 | sudo tee /sys/class/leds/asus::kbd_backlight/brightness
The 2
at echo 2 |
can be changed to a value between 0 - 3, with 3 being the brightest.
To disable the backlight, enter:
echo 0 | sudo tee /sys/class/leds/asus::kbd_backlight/brightness
It works when i type in, but when I add it as a custom keyboard shortcut its not working
– screenslaver
Jul 4 '15 at 15:14
Why turning on keyboard backlight needs administrative permission?
– funicorn
Jan 11 '18 at 12:13
@funicorn because you are changing hardware features
– TellMeWhy
Jan 11 '18 at 22:50
add a comment |
To enable the backlight:
echo 2 | sudo tee /sys/class/leds/asus::kbd_backlight/brightness
The 2
at echo 2 |
can be changed to a value between 0 - 3, with 3 being the brightest.
To disable the backlight, enter:
echo 0 | sudo tee /sys/class/leds/asus::kbd_backlight/brightness
To enable the backlight:
echo 2 | sudo tee /sys/class/leds/asus::kbd_backlight/brightness
The 2
at echo 2 |
can be changed to a value between 0 - 3, with 3 being the brightest.
To disable the backlight, enter:
echo 0 | sudo tee /sys/class/leds/asus::kbd_backlight/brightness
answered Jul 4 '15 at 13:35
TellMeWhyTellMeWhy
8,0262066119
8,0262066119
It works when i type in, but when I add it as a custom keyboard shortcut its not working
– screenslaver
Jul 4 '15 at 15:14
Why turning on keyboard backlight needs administrative permission?
– funicorn
Jan 11 '18 at 12:13
@funicorn because you are changing hardware features
– TellMeWhy
Jan 11 '18 at 22:50
add a comment |
It works when i type in, but when I add it as a custom keyboard shortcut its not working
– screenslaver
Jul 4 '15 at 15:14
Why turning on keyboard backlight needs administrative permission?
– funicorn
Jan 11 '18 at 12:13
@funicorn because you are changing hardware features
– TellMeWhy
Jan 11 '18 at 22:50
It works when i type in, but when I add it as a custom keyboard shortcut its not working
– screenslaver
Jul 4 '15 at 15:14
It works when i type in, but when I add it as a custom keyboard shortcut its not working
– screenslaver
Jul 4 '15 at 15:14
Why turning on keyboard backlight needs administrative permission?
– funicorn
Jan 11 '18 at 12:13
Why turning on keyboard backlight needs administrative permission?
– funicorn
Jan 11 '18 at 12:13
@funicorn because you are changing hardware features
– TellMeWhy
Jan 11 '18 at 22:50
@funicorn because you are changing hardware features
– TellMeWhy
Jan 11 '18 at 22:50
add a comment |
Try
xset led on
or
xset led 3
This worked well with my CMSTORM (Cooler Master Storm Devastator) keyboard.
add a comment |
Try
xset led on
or
xset led 3
This worked well with my CMSTORM (Cooler Master Storm Devastator) keyboard.
add a comment |
Try
xset led on
or
xset led 3
This worked well with my CMSTORM (Cooler Master Storm Devastator) keyboard.
Try
xset led on
or
xset led 3
This worked well with my CMSTORM (Cooler Master Storm Devastator) keyboard.
answered Aug 10 '16 at 20:32
Łukasz KidzińskiŁukasz Kidziński
17617
17617
add a comment |
add a comment |
You can turn on backlight by this command
sudo tee /sys/class/leds/asus::kbd_backlight/brightness <<< 3
This will set it to maximum. The number at the end means brightness ( 0 - 3).
You can link this command to some hot key combination.
You can also read article regarding setting up Ambient Light Sensor.
It works when i type in, but when I add it as a custom keyboard shortcut its not working
– screenslaver
Jul 4 '15 at 15:17
2
This is actually another topic how to setup a script requiring sudo to a key combination. It must be answered already somewhere. I make a script and set that it does not require a password in sudoers.
– Pilot6
Jul 4 '15 at 15:21
add a comment |
You can turn on backlight by this command
sudo tee /sys/class/leds/asus::kbd_backlight/brightness <<< 3
This will set it to maximum. The number at the end means brightness ( 0 - 3).
You can link this command to some hot key combination.
You can also read article regarding setting up Ambient Light Sensor.
It works when i type in, but when I add it as a custom keyboard shortcut its not working
– screenslaver
Jul 4 '15 at 15:17
2
This is actually another topic how to setup a script requiring sudo to a key combination. It must be answered already somewhere. I make a script and set that it does not require a password in sudoers.
– Pilot6
Jul 4 '15 at 15:21
add a comment |
You can turn on backlight by this command
sudo tee /sys/class/leds/asus::kbd_backlight/brightness <<< 3
This will set it to maximum. The number at the end means brightness ( 0 - 3).
You can link this command to some hot key combination.
You can also read article regarding setting up Ambient Light Sensor.
You can turn on backlight by this command
sudo tee /sys/class/leds/asus::kbd_backlight/brightness <<< 3
This will set it to maximum. The number at the end means brightness ( 0 - 3).
You can link this command to some hot key combination.
You can also read article regarding setting up Ambient Light Sensor.
edited Jul 4 '15 at 13:44
answered Jul 4 '15 at 13:28
Pilot6Pilot6
53.7k15109198
53.7k15109198
It works when i type in, but when I add it as a custom keyboard shortcut its not working
– screenslaver
Jul 4 '15 at 15:17
2
This is actually another topic how to setup a script requiring sudo to a key combination. It must be answered already somewhere. I make a script and set that it does not require a password in sudoers.
– Pilot6
Jul 4 '15 at 15:21
add a comment |
It works when i type in, but when I add it as a custom keyboard shortcut its not working
– screenslaver
Jul 4 '15 at 15:17
2
This is actually another topic how to setup a script requiring sudo to a key combination. It must be answered already somewhere. I make a script and set that it does not require a password in sudoers.
– Pilot6
Jul 4 '15 at 15:21
It works when i type in, but when I add it as a custom keyboard shortcut its not working
– screenslaver
Jul 4 '15 at 15:17
It works when i type in, but when I add it as a custom keyboard shortcut its not working
– screenslaver
Jul 4 '15 at 15:17
2
2
This is actually another topic how to setup a script requiring sudo to a key combination. It must be answered already somewhere. I make a script and set that it does not require a password in sudoers.
– Pilot6
Jul 4 '15 at 15:21
This is actually another topic how to setup a script requiring sudo to a key combination. It must be answered already somewhere. I make a script and set that it does not require a password in sudoers.
– Pilot6
Jul 4 '15 at 15:21
add a comment |
Here's how I got it solved:
#!/bin/bash
# Adjust the keyboard backlight level
shopt -s -o nounset
declare -i KBD_BACKLIGHT_MAX=`cat /sys/class/leds/asus::kbd_backlight/max_brightness`
declare -i KBD_BACKLIGHT_LEV=`cat /sys/class/leds/asus::kbd_backlight/brightness`
# We need a parameter, etiher inc or dec
if [ $# -eq 0 ] ; then
exit 192
fi
case $1 in
-inc )
# increasing:
if [ ${KBD_BACKLIGHT_LEV} -lt ${KBD_BACKLIGHT_MAX} ] ; then
KBD_BACKLIGHT_LEV=${KBD_BACKLIGHT_LEV}+1
echo ${KBD_BACKLIGHT_LEV} | tee /sys/class/leds/asus::kbd_backlight/brightness
fi
;;
-dec )
# decreasing:
if [ ${KBD_BACKLIGHT_LEV} -gt 0 ] ; then
KBD_BACKLIGHT_LEV=${KBD_BACKLIGHT_LEV}-1
echo ${KBD_BACKLIGHT_LEV} | tee /sys/class/leds/asus::kbd_backlight/brightness
fi
;;
esac
exit 192
Save the above script in /opt/tweaks/kbd_backlight_adjust.
Then this needs to be run with sudo from a keyboard shortcut so we must add a line to sudoers.
Use visudo and add this line to the bottom:
your_username ALL=(root) NOPASSWD: /opt/tweaks/kbd_backlight_adjust
And finally create your keyboard shortcuts using these commands for increasing and decreasing the keyboard backlight:
sudo /opt/tweaks/kbd_backlight_adjust -inc
and
sudo /opt/tweaks/kbd_backlight_adjust -dec
That should do it :-)
excelent ! just missing the command chmod +x /opt/tweaks/kbd_backlight_adjust to enable of script execution.
– cgasp
Jun 4 '16 at 22:30
add a comment |
Here's how I got it solved:
#!/bin/bash
# Adjust the keyboard backlight level
shopt -s -o nounset
declare -i KBD_BACKLIGHT_MAX=`cat /sys/class/leds/asus::kbd_backlight/max_brightness`
declare -i KBD_BACKLIGHT_LEV=`cat /sys/class/leds/asus::kbd_backlight/brightness`
# We need a parameter, etiher inc or dec
if [ $# -eq 0 ] ; then
exit 192
fi
case $1 in
-inc )
# increasing:
if [ ${KBD_BACKLIGHT_LEV} -lt ${KBD_BACKLIGHT_MAX} ] ; then
KBD_BACKLIGHT_LEV=${KBD_BACKLIGHT_LEV}+1
echo ${KBD_BACKLIGHT_LEV} | tee /sys/class/leds/asus::kbd_backlight/brightness
fi
;;
-dec )
# decreasing:
if [ ${KBD_BACKLIGHT_LEV} -gt 0 ] ; then
KBD_BACKLIGHT_LEV=${KBD_BACKLIGHT_LEV}-1
echo ${KBD_BACKLIGHT_LEV} | tee /sys/class/leds/asus::kbd_backlight/brightness
fi
;;
esac
exit 192
Save the above script in /opt/tweaks/kbd_backlight_adjust.
Then this needs to be run with sudo from a keyboard shortcut so we must add a line to sudoers.
Use visudo and add this line to the bottom:
your_username ALL=(root) NOPASSWD: /opt/tweaks/kbd_backlight_adjust
And finally create your keyboard shortcuts using these commands for increasing and decreasing the keyboard backlight:
sudo /opt/tweaks/kbd_backlight_adjust -inc
and
sudo /opt/tweaks/kbd_backlight_adjust -dec
That should do it :-)
excelent ! just missing the command chmod +x /opt/tweaks/kbd_backlight_adjust to enable of script execution.
– cgasp
Jun 4 '16 at 22:30
add a comment |
Here's how I got it solved:
#!/bin/bash
# Adjust the keyboard backlight level
shopt -s -o nounset
declare -i KBD_BACKLIGHT_MAX=`cat /sys/class/leds/asus::kbd_backlight/max_brightness`
declare -i KBD_BACKLIGHT_LEV=`cat /sys/class/leds/asus::kbd_backlight/brightness`
# We need a parameter, etiher inc or dec
if [ $# -eq 0 ] ; then
exit 192
fi
case $1 in
-inc )
# increasing:
if [ ${KBD_BACKLIGHT_LEV} -lt ${KBD_BACKLIGHT_MAX} ] ; then
KBD_BACKLIGHT_LEV=${KBD_BACKLIGHT_LEV}+1
echo ${KBD_BACKLIGHT_LEV} | tee /sys/class/leds/asus::kbd_backlight/brightness
fi
;;
-dec )
# decreasing:
if [ ${KBD_BACKLIGHT_LEV} -gt 0 ] ; then
KBD_BACKLIGHT_LEV=${KBD_BACKLIGHT_LEV}-1
echo ${KBD_BACKLIGHT_LEV} | tee /sys/class/leds/asus::kbd_backlight/brightness
fi
;;
esac
exit 192
Save the above script in /opt/tweaks/kbd_backlight_adjust.
Then this needs to be run with sudo from a keyboard shortcut so we must add a line to sudoers.
Use visudo and add this line to the bottom:
your_username ALL=(root) NOPASSWD: /opt/tweaks/kbd_backlight_adjust
And finally create your keyboard shortcuts using these commands for increasing and decreasing the keyboard backlight:
sudo /opt/tweaks/kbd_backlight_adjust -inc
and
sudo /opt/tweaks/kbd_backlight_adjust -dec
That should do it :-)
Here's how I got it solved:
#!/bin/bash
# Adjust the keyboard backlight level
shopt -s -o nounset
declare -i KBD_BACKLIGHT_MAX=`cat /sys/class/leds/asus::kbd_backlight/max_brightness`
declare -i KBD_BACKLIGHT_LEV=`cat /sys/class/leds/asus::kbd_backlight/brightness`
# We need a parameter, etiher inc or dec
if [ $# -eq 0 ] ; then
exit 192
fi
case $1 in
-inc )
# increasing:
if [ ${KBD_BACKLIGHT_LEV} -lt ${KBD_BACKLIGHT_MAX} ] ; then
KBD_BACKLIGHT_LEV=${KBD_BACKLIGHT_LEV}+1
echo ${KBD_BACKLIGHT_LEV} | tee /sys/class/leds/asus::kbd_backlight/brightness
fi
;;
-dec )
# decreasing:
if [ ${KBD_BACKLIGHT_LEV} -gt 0 ] ; then
KBD_BACKLIGHT_LEV=${KBD_BACKLIGHT_LEV}-1
echo ${KBD_BACKLIGHT_LEV} | tee /sys/class/leds/asus::kbd_backlight/brightness
fi
;;
esac
exit 192
Save the above script in /opt/tweaks/kbd_backlight_adjust.
Then this needs to be run with sudo from a keyboard shortcut so we must add a line to sudoers.
Use visudo and add this line to the bottom:
your_username ALL=(root) NOPASSWD: /opt/tweaks/kbd_backlight_adjust
And finally create your keyboard shortcuts using these commands for increasing and decreasing the keyboard backlight:
sudo /opt/tweaks/kbd_backlight_adjust -inc
and
sudo /opt/tweaks/kbd_backlight_adjust -dec
That should do it :-)
answered Nov 22 '15 at 14:45
PakezonitePakezonite
1285
1285
excelent ! just missing the command chmod +x /opt/tweaks/kbd_backlight_adjust to enable of script execution.
– cgasp
Jun 4 '16 at 22:30
add a comment |
excelent ! just missing the command chmod +x /opt/tweaks/kbd_backlight_adjust to enable of script execution.
– cgasp
Jun 4 '16 at 22:30
excelent ! just missing the command chmod +x /opt/tweaks/kbd_backlight_adjust to enable of script execution.
– cgasp
Jun 4 '16 at 22:30
excelent ! just missing the command chmod +x /opt/tweaks/kbd_backlight_adjust to enable of script execution.
– cgasp
Jun 4 '16 at 22:30
add a comment |
I had the same issue with an Asus ROG laptop I'd purchased. Here's what I did to fix keyboard shortcuts in general.
sudo vim /etc/default/grub
You’ll find this line:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
Simply add on to the end of it:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi="
Save, Exit and Reboot
add a comment |
I had the same issue with an Asus ROG laptop I'd purchased. Here's what I did to fix keyboard shortcuts in general.
sudo vim /etc/default/grub
You’ll find this line:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
Simply add on to the end of it:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi="
Save, Exit and Reboot
add a comment |
I had the same issue with an Asus ROG laptop I'd purchased. Here's what I did to fix keyboard shortcuts in general.
sudo vim /etc/default/grub
You’ll find this line:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
Simply add on to the end of it:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi="
Save, Exit and Reboot
I had the same issue with an Asus ROG laptop I'd purchased. Here's what I did to fix keyboard shortcuts in general.
sudo vim /etc/default/grub
You’ll find this line:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
Simply add on to the end of it:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi="
Save, Exit and Reboot
edited Dec 20 '16 at 13:15
Zanna
51.1k13138242
51.1k13138242
answered Aug 10 '16 at 21:03
Matt O.Matt O.
44529
44529
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f644410%2fcannot-turn-on-keyboard-backlight%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
you must check the layout of your keyboard and change it to what fits your needs
– user284234
Jul 4 '15 at 12:50