How can I change screen brightness in debian wheezy that installed in laptop?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
7
down vote

favorite
3












My screen is just too bright. How can I adjust screen brightness? So far I tried the following:



  1. "Brightness and lock" settings doesn't work.

  2. Fn + F6 or F7 doesn't work.


  3. This doesn't work.


  4. This doesn't work too.

My Laptop is Toshiba Satelite L745










share|improve this question



























    up vote
    7
    down vote

    favorite
    3












    My screen is just too bright. How can I adjust screen brightness? So far I tried the following:



    1. "Brightness and lock" settings doesn't work.

    2. Fn + F6 or F7 doesn't work.


    3. This doesn't work.


    4. This doesn't work too.

    My Laptop is Toshiba Satelite L745










    share|improve this question

























      up vote
      7
      down vote

      favorite
      3









      up vote
      7
      down vote

      favorite
      3






      3





      My screen is just too bright. How can I adjust screen brightness? So far I tried the following:



      1. "Brightness and lock" settings doesn't work.

      2. Fn + F6 or F7 doesn't work.


      3. This doesn't work.


      4. This doesn't work too.

      My Laptop is Toshiba Satelite L745










      share|improve this question















      My screen is just too bright. How can I adjust screen brightness? So far I tried the following:



      1. "Brightness and lock" settings doesn't work.

      2. Fn + F6 or F7 doesn't work.


      3. This doesn't work.


      4. This doesn't work too.

      My Laptop is Toshiba Satelite L745







      debian monitors brightness






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Apr 13 '17 at 12:36









      Community♦

      1




      1










      asked Feb 6 '15 at 18:08









      Mas Bagol

      2912616




      2912616




















          4 Answers
          4






          active

          oldest

          votes

















          up vote
          5
          down vote













          You can try xrandr tool.



          First run xrandr --verbose and look for a line with resolution like LVDS1 connected 1024x600+0+0. The name of your display (LVDS1 in this example) is needed here. Now you are ready to set brightness:



          xrandr --output LVDS1 --brightness 0.4


          xrandr sets software, not hardware brightness so you can exceed both upper and lower limits:



          xrandr --output LVDS1 --brightness 1.7
          xrandr --output LVDS1 --brightness -0.4 #negative value is also possible
          xrandr --output LVDS1 --brightness 1





          share|improve this answer




















          • It still too bright. The way xrandr do is just filtering the colors Is there anyway to access hardware brightness?
            – Mas Bagol
            Feb 7 '15 at 7:00

















          up vote
          2
          down vote













          I found the screen brightness solution in a somewhat obscure article. My issue was my laptop couldn't remember brightness settings upon reboot. I'll post the link at the end of my answer.



          All that was needed was to edit the file /etc/rc.local and add one line.



          First, back up the rc.local file. 
          If something goes wrong you can revert to the original file.



          cat /etc/rc.local




          #!/bin/sh -e
          #
          # rc.local
          #
          # This script is executed at the end of each multiuser runlevel.
          # Make sure that the script will "exit 0" on success or any other
          # value on error.
          #
          # In order to enable or disable this script just change the execution
          # bits.
          #
          # By default this script does nothing.

          # screen brightness line added
          # it's to make the laptop remember settings at power up.

          echo 7 > /sys/class/backlight/acpi_video0/brightness

          exit 0


          Note that I added the line
          echo 7 > /sys/class/backlight/acpi_video0/brightness to my rc.local file.



          In my Debian Wheezy setup, the value echo 7 > … sets brightness midway between dark and bright. So 7 is perfect for me. Choose a value that suits you.



          rc.local runs when you restart your machine.



          Here's the link:
          Installing Ubuntu on Samsung 5 (SSD+HDD) | LinuxMeerkat



          Scroll down the page to find how to change default screen brightness on a laptop.






          share|improve this answer





























            up vote
            1
            down vote













            For me on Acer 7530G with:




            Distributor ID: Debian
            Description: Debian GNU/Linux 8.6 (jessie)
            Release: 8.6 Codename: jessie




            The solution was in Application Menu> Settings> xfce4-desktop there can you set the brightness of the monitor, for me was 100 fine.






            share|improve this answer





























              up vote
              0
              down vote













              Before doing this, I installed firmware-linux-nonfree; I don't know whether that's affected anything.




              If xbrightness does not detect the backlight, you'll need to find the backlight file and manually set the backlight value yourself. Here's the process I used for my Toshiba Satellite C50-B-14Z:



              wizzwizz4@mylaptop:~$ ls /sys/class/
              ata_device devfreq i2c-adapter net scsi_device vc
              ata_link dma ieee80211 pci_bus scsi_disk video4linux
              ata_port dmi input phy scsi_generic vtconsole
              backlight drm iommu powercap scsi_host watchdog
              bdi firmware leds power_supply sound wmi
              block gpio mem ppdev spi_master
              bluetooth graphics memstick_host printer thermal
              bsg hidraw misc rfkill tpm
              devcoredump hwmon mmc_host rtc tty
              wizzwizz4@mylaptop:~$ ls /sys/class/backlight/
              intel_backlight
              wizzwizz4@mylaptop:~$ ls /sys/class/backlight/intel_backlight/
              actual_brightness brightness max_brightness subsystem uevent
              bl_power device power type


              Now I've got the brightness file: /sys/class/backlight/intel_backlight/. I can read the value of this file:



              wizzwizz4@mylaptop:~$ cat /sys/class/backlight/intel_backlight/brightness
              3754


              This suggests that it's a 16-bit value, as opposed to the usual 4-bit. I like it quite dim, so I'll set it to 390 out of 65535:



              wizzwizz4@mylaptop:~$ echo 390 | sudo tee /sys/class/backlight/intel_backlight/brightness
              390


              And the screen dimmed! Yay!





              share






















                Your Answer








                StackExchange.ready(function()
                var channelOptions =
                tags: "".split(" "),
                id: "106"
                ;
                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',
                convertImagesToLinks: false,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: null,
                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%2funix.stackexchange.com%2fquestions%2f183375%2fhow-can-i-change-screen-brightness-in-debian-wheezy-that-installed-in-laptop%23new-answer', 'question_page');

                );

                Post as a guest






























                4 Answers
                4






                active

                oldest

                votes








                4 Answers
                4






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes








                up vote
                5
                down vote













                You can try xrandr tool.



                First run xrandr --verbose and look for a line with resolution like LVDS1 connected 1024x600+0+0. The name of your display (LVDS1 in this example) is needed here. Now you are ready to set brightness:



                xrandr --output LVDS1 --brightness 0.4


                xrandr sets software, not hardware brightness so you can exceed both upper and lower limits:



                xrandr --output LVDS1 --brightness 1.7
                xrandr --output LVDS1 --brightness -0.4 #negative value is also possible
                xrandr --output LVDS1 --brightness 1





                share|improve this answer




















                • It still too bright. The way xrandr do is just filtering the colors Is there anyway to access hardware brightness?
                  – Mas Bagol
                  Feb 7 '15 at 7:00














                up vote
                5
                down vote













                You can try xrandr tool.



                First run xrandr --verbose and look for a line with resolution like LVDS1 connected 1024x600+0+0. The name of your display (LVDS1 in this example) is needed here. Now you are ready to set brightness:



                xrandr --output LVDS1 --brightness 0.4


                xrandr sets software, not hardware brightness so you can exceed both upper and lower limits:



                xrandr --output LVDS1 --brightness 1.7
                xrandr --output LVDS1 --brightness -0.4 #negative value is also possible
                xrandr --output LVDS1 --brightness 1





                share|improve this answer




















                • It still too bright. The way xrandr do is just filtering the colors Is there anyway to access hardware brightness?
                  – Mas Bagol
                  Feb 7 '15 at 7:00












                up vote
                5
                down vote










                up vote
                5
                down vote









                You can try xrandr tool.



                First run xrandr --verbose and look for a line with resolution like LVDS1 connected 1024x600+0+0. The name of your display (LVDS1 in this example) is needed here. Now you are ready to set brightness:



                xrandr --output LVDS1 --brightness 0.4


                xrandr sets software, not hardware brightness so you can exceed both upper and lower limits:



                xrandr --output LVDS1 --brightness 1.7
                xrandr --output LVDS1 --brightness -0.4 #negative value is also possible
                xrandr --output LVDS1 --brightness 1





                share|improve this answer












                You can try xrandr tool.



                First run xrandr --verbose and look for a line with resolution like LVDS1 connected 1024x600+0+0. The name of your display (LVDS1 in this example) is needed here. Now you are ready to set brightness:



                xrandr --output LVDS1 --brightness 0.4


                xrandr sets software, not hardware brightness so you can exceed both upper and lower limits:



                xrandr --output LVDS1 --brightness 1.7
                xrandr --output LVDS1 --brightness -0.4 #negative value is also possible
                xrandr --output LVDS1 --brightness 1






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Feb 6 '15 at 18:51









                jimmij

                30.1k867102




                30.1k867102











                • It still too bright. The way xrandr do is just filtering the colors Is there anyway to access hardware brightness?
                  – Mas Bagol
                  Feb 7 '15 at 7:00
















                • It still too bright. The way xrandr do is just filtering the colors Is there anyway to access hardware brightness?
                  – Mas Bagol
                  Feb 7 '15 at 7:00















                It still too bright. The way xrandr do is just filtering the colors Is there anyway to access hardware brightness?
                – Mas Bagol
                Feb 7 '15 at 7:00




                It still too bright. The way xrandr do is just filtering the colors Is there anyway to access hardware brightness?
                – Mas Bagol
                Feb 7 '15 at 7:00












                up vote
                2
                down vote













                I found the screen brightness solution in a somewhat obscure article. My issue was my laptop couldn't remember brightness settings upon reboot. I'll post the link at the end of my answer.



                All that was needed was to edit the file /etc/rc.local and add one line.



                First, back up the rc.local file. 
                If something goes wrong you can revert to the original file.



                cat /etc/rc.local




                #!/bin/sh -e
                #
                # rc.local
                #
                # This script is executed at the end of each multiuser runlevel.
                # Make sure that the script will "exit 0" on success or any other
                # value on error.
                #
                # In order to enable or disable this script just change the execution
                # bits.
                #
                # By default this script does nothing.

                # screen brightness line added
                # it's to make the laptop remember settings at power up.

                echo 7 > /sys/class/backlight/acpi_video0/brightness

                exit 0


                Note that I added the line
                echo 7 > /sys/class/backlight/acpi_video0/brightness to my rc.local file.



                In my Debian Wheezy setup, the value echo 7 > … sets brightness midway between dark and bright. So 7 is perfect for me. Choose a value that suits you.



                rc.local runs when you restart your machine.



                Here's the link:
                Installing Ubuntu on Samsung 5 (SSD+HDD) | LinuxMeerkat



                Scroll down the page to find how to change default screen brightness on a laptop.






                share|improve this answer


























                  up vote
                  2
                  down vote













                  I found the screen brightness solution in a somewhat obscure article. My issue was my laptop couldn't remember brightness settings upon reboot. I'll post the link at the end of my answer.



                  All that was needed was to edit the file /etc/rc.local and add one line.



                  First, back up the rc.local file. 
                  If something goes wrong you can revert to the original file.



                  cat /etc/rc.local




                  #!/bin/sh -e
                  #
                  # rc.local
                  #
                  # This script is executed at the end of each multiuser runlevel.
                  # Make sure that the script will "exit 0" on success or any other
                  # value on error.
                  #
                  # In order to enable or disable this script just change the execution
                  # bits.
                  #
                  # By default this script does nothing.

                  # screen brightness line added
                  # it's to make the laptop remember settings at power up.

                  echo 7 > /sys/class/backlight/acpi_video0/brightness

                  exit 0


                  Note that I added the line
                  echo 7 > /sys/class/backlight/acpi_video0/brightness to my rc.local file.



                  In my Debian Wheezy setup, the value echo 7 > … sets brightness midway between dark and bright. So 7 is perfect for me. Choose a value that suits you.



                  rc.local runs when you restart your machine.



                  Here's the link:
                  Installing Ubuntu on Samsung 5 (SSD+HDD) | LinuxMeerkat



                  Scroll down the page to find how to change default screen brightness on a laptop.






                  share|improve this answer
























                    up vote
                    2
                    down vote










                    up vote
                    2
                    down vote









                    I found the screen brightness solution in a somewhat obscure article. My issue was my laptop couldn't remember brightness settings upon reboot. I'll post the link at the end of my answer.



                    All that was needed was to edit the file /etc/rc.local and add one line.



                    First, back up the rc.local file. 
                    If something goes wrong you can revert to the original file.



                    cat /etc/rc.local




                    #!/bin/sh -e
                    #
                    # rc.local
                    #
                    # This script is executed at the end of each multiuser runlevel.
                    # Make sure that the script will "exit 0" on success or any other
                    # value on error.
                    #
                    # In order to enable or disable this script just change the execution
                    # bits.
                    #
                    # By default this script does nothing.

                    # screen brightness line added
                    # it's to make the laptop remember settings at power up.

                    echo 7 > /sys/class/backlight/acpi_video0/brightness

                    exit 0


                    Note that I added the line
                    echo 7 > /sys/class/backlight/acpi_video0/brightness to my rc.local file.



                    In my Debian Wheezy setup, the value echo 7 > … sets brightness midway between dark and bright. So 7 is perfect for me. Choose a value that suits you.



                    rc.local runs when you restart your machine.



                    Here's the link:
                    Installing Ubuntu on Samsung 5 (SSD+HDD) | LinuxMeerkat



                    Scroll down the page to find how to change default screen brightness on a laptop.






                    share|improve this answer














                    I found the screen brightness solution in a somewhat obscure article. My issue was my laptop couldn't remember brightness settings upon reboot. I'll post the link at the end of my answer.



                    All that was needed was to edit the file /etc/rc.local and add one line.



                    First, back up the rc.local file. 
                    If something goes wrong you can revert to the original file.



                    cat /etc/rc.local




                    #!/bin/sh -e
                    #
                    # rc.local
                    #
                    # This script is executed at the end of each multiuser runlevel.
                    # Make sure that the script will "exit 0" on success or any other
                    # value on error.
                    #
                    # In order to enable or disable this script just change the execution
                    # bits.
                    #
                    # By default this script does nothing.

                    # screen brightness line added
                    # it's to make the laptop remember settings at power up.

                    echo 7 > /sys/class/backlight/acpi_video0/brightness

                    exit 0


                    Note that I added the line
                    echo 7 > /sys/class/backlight/acpi_video0/brightness to my rc.local file.



                    In my Debian Wheezy setup, the value echo 7 > … sets brightness midway between dark and bright. So 7 is perfect for me. Choose a value that suits you.



                    rc.local runs when you restart your machine.



                    Here's the link:
                    Installing Ubuntu on Samsung 5 (SSD+HDD) | LinuxMeerkat



                    Scroll down the page to find how to change default screen brightness on a laptop.







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Feb 14 '16 at 1:53









                    G-Man

                    12.2k92861




                    12.2k92861










                    answered Feb 14 '16 at 0:51









                    tex

                    212




                    212




















                        up vote
                        1
                        down vote













                        For me on Acer 7530G with:




                        Distributor ID: Debian
                        Description: Debian GNU/Linux 8.6 (jessie)
                        Release: 8.6 Codename: jessie




                        The solution was in Application Menu> Settings> xfce4-desktop there can you set the brightness of the monitor, for me was 100 fine.






                        share|improve this answer


























                          up vote
                          1
                          down vote













                          For me on Acer 7530G with:




                          Distributor ID: Debian
                          Description: Debian GNU/Linux 8.6 (jessie)
                          Release: 8.6 Codename: jessie




                          The solution was in Application Menu> Settings> xfce4-desktop there can you set the brightness of the monitor, for me was 100 fine.






                          share|improve this answer
























                            up vote
                            1
                            down vote










                            up vote
                            1
                            down vote









                            For me on Acer 7530G with:




                            Distributor ID: Debian
                            Description: Debian GNU/Linux 8.6 (jessie)
                            Release: 8.6 Codename: jessie




                            The solution was in Application Menu> Settings> xfce4-desktop there can you set the brightness of the monitor, for me was 100 fine.






                            share|improve this answer














                            For me on Acer 7530G with:




                            Distributor ID: Debian
                            Description: Debian GNU/Linux 8.6 (jessie)
                            Release: 8.6 Codename: jessie




                            The solution was in Application Menu> Settings> xfce4-desktop there can you set the brightness of the monitor, for me was 100 fine.







                            share|improve this answer














                            share|improve this answer



                            share|improve this answer








                            edited Oct 25 '16 at 11:01

























                            answered Oct 25 '16 at 8:32









                            Jakub

                            112




                            112




















                                up vote
                                0
                                down vote













                                Before doing this, I installed firmware-linux-nonfree; I don't know whether that's affected anything.




                                If xbrightness does not detect the backlight, you'll need to find the backlight file and manually set the backlight value yourself. Here's the process I used for my Toshiba Satellite C50-B-14Z:



                                wizzwizz4@mylaptop:~$ ls /sys/class/
                                ata_device devfreq i2c-adapter net scsi_device vc
                                ata_link dma ieee80211 pci_bus scsi_disk video4linux
                                ata_port dmi input phy scsi_generic vtconsole
                                backlight drm iommu powercap scsi_host watchdog
                                bdi firmware leds power_supply sound wmi
                                block gpio mem ppdev spi_master
                                bluetooth graphics memstick_host printer thermal
                                bsg hidraw misc rfkill tpm
                                devcoredump hwmon mmc_host rtc tty
                                wizzwizz4@mylaptop:~$ ls /sys/class/backlight/
                                intel_backlight
                                wizzwizz4@mylaptop:~$ ls /sys/class/backlight/intel_backlight/
                                actual_brightness brightness max_brightness subsystem uevent
                                bl_power device power type


                                Now I've got the brightness file: /sys/class/backlight/intel_backlight/. I can read the value of this file:



                                wizzwizz4@mylaptop:~$ cat /sys/class/backlight/intel_backlight/brightness
                                3754


                                This suggests that it's a 16-bit value, as opposed to the usual 4-bit. I like it quite dim, so I'll set it to 390 out of 65535:



                                wizzwizz4@mylaptop:~$ echo 390 | sudo tee /sys/class/backlight/intel_backlight/brightness
                                390


                                And the screen dimmed! Yay!





                                share


























                                  up vote
                                  0
                                  down vote













                                  Before doing this, I installed firmware-linux-nonfree; I don't know whether that's affected anything.




                                  If xbrightness does not detect the backlight, you'll need to find the backlight file and manually set the backlight value yourself. Here's the process I used for my Toshiba Satellite C50-B-14Z:



                                  wizzwizz4@mylaptop:~$ ls /sys/class/
                                  ata_device devfreq i2c-adapter net scsi_device vc
                                  ata_link dma ieee80211 pci_bus scsi_disk video4linux
                                  ata_port dmi input phy scsi_generic vtconsole
                                  backlight drm iommu powercap scsi_host watchdog
                                  bdi firmware leds power_supply sound wmi
                                  block gpio mem ppdev spi_master
                                  bluetooth graphics memstick_host printer thermal
                                  bsg hidraw misc rfkill tpm
                                  devcoredump hwmon mmc_host rtc tty
                                  wizzwizz4@mylaptop:~$ ls /sys/class/backlight/
                                  intel_backlight
                                  wizzwizz4@mylaptop:~$ ls /sys/class/backlight/intel_backlight/
                                  actual_brightness brightness max_brightness subsystem uevent
                                  bl_power device power type


                                  Now I've got the brightness file: /sys/class/backlight/intel_backlight/. I can read the value of this file:



                                  wizzwizz4@mylaptop:~$ cat /sys/class/backlight/intel_backlight/brightness
                                  3754


                                  This suggests that it's a 16-bit value, as opposed to the usual 4-bit. I like it quite dim, so I'll set it to 390 out of 65535:



                                  wizzwizz4@mylaptop:~$ echo 390 | sudo tee /sys/class/backlight/intel_backlight/brightness
                                  390


                                  And the screen dimmed! Yay!





                                  share
























                                    up vote
                                    0
                                    down vote










                                    up vote
                                    0
                                    down vote









                                    Before doing this, I installed firmware-linux-nonfree; I don't know whether that's affected anything.




                                    If xbrightness does not detect the backlight, you'll need to find the backlight file and manually set the backlight value yourself. Here's the process I used for my Toshiba Satellite C50-B-14Z:



                                    wizzwizz4@mylaptop:~$ ls /sys/class/
                                    ata_device devfreq i2c-adapter net scsi_device vc
                                    ata_link dma ieee80211 pci_bus scsi_disk video4linux
                                    ata_port dmi input phy scsi_generic vtconsole
                                    backlight drm iommu powercap scsi_host watchdog
                                    bdi firmware leds power_supply sound wmi
                                    block gpio mem ppdev spi_master
                                    bluetooth graphics memstick_host printer thermal
                                    bsg hidraw misc rfkill tpm
                                    devcoredump hwmon mmc_host rtc tty
                                    wizzwizz4@mylaptop:~$ ls /sys/class/backlight/
                                    intel_backlight
                                    wizzwizz4@mylaptop:~$ ls /sys/class/backlight/intel_backlight/
                                    actual_brightness brightness max_brightness subsystem uevent
                                    bl_power device power type


                                    Now I've got the brightness file: /sys/class/backlight/intel_backlight/. I can read the value of this file:



                                    wizzwizz4@mylaptop:~$ cat /sys/class/backlight/intel_backlight/brightness
                                    3754


                                    This suggests that it's a 16-bit value, as opposed to the usual 4-bit. I like it quite dim, so I'll set it to 390 out of 65535:



                                    wizzwizz4@mylaptop:~$ echo 390 | sudo tee /sys/class/backlight/intel_backlight/brightness
                                    390


                                    And the screen dimmed! Yay!





                                    share














                                    Before doing this, I installed firmware-linux-nonfree; I don't know whether that's affected anything.




                                    If xbrightness does not detect the backlight, you'll need to find the backlight file and manually set the backlight value yourself. Here's the process I used for my Toshiba Satellite C50-B-14Z:



                                    wizzwizz4@mylaptop:~$ ls /sys/class/
                                    ata_device devfreq i2c-adapter net scsi_device vc
                                    ata_link dma ieee80211 pci_bus scsi_disk video4linux
                                    ata_port dmi input phy scsi_generic vtconsole
                                    backlight drm iommu powercap scsi_host watchdog
                                    bdi firmware leds power_supply sound wmi
                                    block gpio mem ppdev spi_master
                                    bluetooth graphics memstick_host printer thermal
                                    bsg hidraw misc rfkill tpm
                                    devcoredump hwmon mmc_host rtc tty
                                    wizzwizz4@mylaptop:~$ ls /sys/class/backlight/
                                    intel_backlight
                                    wizzwizz4@mylaptop:~$ ls /sys/class/backlight/intel_backlight/
                                    actual_brightness brightness max_brightness subsystem uevent
                                    bl_power device power type


                                    Now I've got the brightness file: /sys/class/backlight/intel_backlight/. I can read the value of this file:



                                    wizzwizz4@mylaptop:~$ cat /sys/class/backlight/intel_backlight/brightness
                                    3754


                                    This suggests that it's a 16-bit value, as opposed to the usual 4-bit. I like it quite dim, so I'll set it to 390 out of 65535:



                                    wizzwizz4@mylaptop:~$ echo 390 | sudo tee /sys/class/backlight/intel_backlight/brightness
                                    390


                                    And the screen dimmed! Yay!






                                    share













                                    share


                                    share








                                    edited 2 mins ago

























                                    answered 9 mins ago









                                    wizzwizz4

                                    273111




                                    273111



























                                         

                                        draft saved


                                        draft discarded















































                                         


                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function ()
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f183375%2fhow-can-i-change-screen-brightness-in-debian-wheezy-that-installed-in-laptop%23new-answer', 'question_page');

                                        );

                                        Post as a guest













































































                                        Popular posts from this blog

                                        Peggy Mitchell

                                        The Forum (Inglewood, California)

                                        Palaiologos