cannot turn on keyboard backlight












7















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










share|improve this question

























  • you must check the layout of your keyboard and change it to what fits your needs

    – user284234
    Jul 4 '15 at 12:50
















7















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










share|improve this question

























  • you must check the layout of your keyboard and change it to what fits your needs

    – user284234
    Jul 4 '15 at 12:50














7












7








7


6






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










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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



















  • 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










5 Answers
5






active

oldest

votes


















16














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





share|improve this answer
























  • 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





















6














Try



xset led on


or



xset led 3


This worked well with my CMSTORM (Cooler Master Storm Devastator) keyboard.






share|improve this answer































    3














    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.






    share|improve this answer


























    • 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



















    3














    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 :-)






    share|improve this answer
























    • excelent ! just missing the command chmod +x /opt/tweaks/kbd_backlight_adjust to enable of script execution.

      – cgasp
      Jun 4 '16 at 22:30



















    1














    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






    share|improve this answer

























      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
      });


      }
      });














      draft saved

      draft discarded


















      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









      16














      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





      share|improve this answer
























      • 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


















      16














      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





      share|improve this answer
























      • 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
















      16












      16








      16







      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





      share|improve this answer













      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






      share|improve this answer












      share|improve this answer



      share|improve this answer










      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





















      • 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















      6














      Try



      xset led on


      or



      xset led 3


      This worked well with my CMSTORM (Cooler Master Storm Devastator) keyboard.






      share|improve this answer




























        6














        Try



        xset led on


        or



        xset led 3


        This worked well with my CMSTORM (Cooler Master Storm Devastator) keyboard.






        share|improve this answer


























          6












          6








          6







          Try



          xset led on


          or



          xset led 3


          This worked well with my CMSTORM (Cooler Master Storm Devastator) keyboard.






          share|improve this answer













          Try



          xset led on


          or



          xset led 3


          This worked well with my CMSTORM (Cooler Master Storm Devastator) keyboard.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Aug 10 '16 at 20:32









          Łukasz KidzińskiŁukasz Kidziński

          17617




          17617























              3














              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.






              share|improve this answer


























              • 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
















              3














              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.






              share|improve this answer


























              • 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














              3












              3








              3







              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.






              share|improve this answer















              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.







              share|improve this answer














              share|improve this answer



              share|improve this answer








              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



















              • 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











              3














              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 :-)






              share|improve this answer
























              • excelent ! just missing the command chmod +x /opt/tweaks/kbd_backlight_adjust to enable of script execution.

                – cgasp
                Jun 4 '16 at 22:30
















              3














              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 :-)






              share|improve this answer
























              • excelent ! just missing the command chmod +x /opt/tweaks/kbd_backlight_adjust to enable of script execution.

                – cgasp
                Jun 4 '16 at 22:30














              3












              3








              3







              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 :-)






              share|improve this answer













              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 :-)







              share|improve this answer












              share|improve this answer



              share|improve this answer










              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



















              • 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











              1














              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






              share|improve this answer






























                1














                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






                share|improve this answer




























                  1












                  1








                  1







                  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






                  share|improve this answer















                  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







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  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






























                      draft saved

                      draft discarded




















































                      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.




                      draft saved


                      draft discarded














                      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





















































                      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







                      Popular posts from this blog

                      Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

                      ComboBox Display Member on multiple fields

                      Is it possible to collect Nectar points via Trainline?