The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Inspiron Brightness Working

    Discussion in 'Linux Compatibility and Software' started by Thomas, Jun 10, 2008.

  1. Thomas

    Thomas McLovin

    Reputations:
    1,988
    Messages:
    5,253
    Likes Received:
    0
    Trophy Points:
    205
    I just did this, works nicely on my 1501.

    Code:
    sudo gedit /etc/acpi/video_brightnessup.sh
    Replace everything in the file with this:

    Code:
    #!/bin/bash
    
    CURRENT=$(grep "current:" /proc/acpi/video/VGA/LCD/brightness |awk '{print $2}')
    
    
    case "$CURRENT" in
    
    100)
    echo -n 100 > /proc/acpi/video/VGA/LCD/brightness;
    ;;
    87)
    echo -n 100 > /proc/acpi/video/VGA/LCD/brightness;
    ;;
    75)
    echo -n 87 > /proc/acpi/video/VGA/LCD/brightness;
    ;;
    62)
    echo -n 75 > /proc/acpi/video/VGA/LCD/brightness;
    ;;
    50)
    echo -n 62 > /proc/acpi/video/VGA/LCD/brightness;
    ;;
    37)
    echo -n 50 > /proc/acpi/video/VGA/LCD/brightness;
    ;;
    25)
    echo -n 37 > /proc/acpi/video/VGA/LCD/brightness;
    ;;
    12)
    echo -n 25 > /proc/acpi/video/VGA/LCD/brightness;
    ;;
    *)
    echo -n 100 > /proc/acpi/video/VGA/LCD/brightness ;
    ;;
    esac


    Code:
    sudo gedit /etc/acpi/video_brightnessdown.sh
    Replace everything in the file with this:


    Code:
    #!/bin/bash
    
    CURRENT=$(grep "current:" /proc/acpi/video/VGA/LCD/brightness |awk '{print $2}')
    
    
    case "$CURRENT" in
    
    12)
    echo -n 12 > /proc/acpi/video/VGA/LCD/brightness;
    ;;
    25)
    echo -n 12 > /proc/acpi/video/VGA/LCD/brightness;
    ;;
    37)
    echo -n 25 > /proc/acpi/video/VGA/LCD/brightness;
    ;;
    50)
    echo -n 37 > /proc/acpi/video/VGA/LCD/brightness;
    ;;
    62)
    echo -n 50 > /proc/acpi/video/VGA/LCD/brightness;
    ;;
    75)
    echo -n 62 > /proc/acpi/video/VGA/LCD/brightness;
    ;;
    87)
    echo -n 75 > /proc/acpi/video/VGA/LCD/brightness;
    ;;
    100)
    echo -n 87 > /proc/acpi/video/VGA/LCD/brightness;
    ;;
    *)
    echo -n 50 > /proc/acpi/video/VGA/LCD/brightness ;
    ;;
    esac
     
  2. Baby Boy

    Baby Boy Notebook Consultant

    Reputations:
    10
    Messages:
    127
    Likes Received:
    0
    Trophy Points:
    30
    Dang, you're making me want to install Ubuntu again. So let me get this straight: Fn+Arrow Up/Down controls the brightness as it would in Windows? No BIOS downgrading?
     
  3. Thomas

    Thomas McLovin

    Reputations:
    1,988
    Messages:
    5,253
    Likes Received:
    0
    Trophy Points:
    205
    Ya, works perfectly.
    The brightness applet doesn't work though :(
     
  4. vallaird

    vallaird Notebook Consultant

    Reputations:
    1
    Messages:
    118
    Likes Received:
    0
    Trophy Points:
    30
    Great work, thanks for sharing this with us.