Results 1 to 10 of 12

Thread: Acer aspire backlight issue 11.10

Hybrid View

  1. #1
    Join Date
    May 2011
    Location
    Mount Morris, MI
    Beans
    28
    Distro
    Ubuntu

    Exclamation Acer aspire backlight issue 11.10

    I've looked everywhere alas no luck. it seems to be a common problem with no solution.

    my backlight just shuts off when Ubuntu boots. my external monitor works, just not my laptop screen. and my brightness/contrast is all the way up. it just doesn't work..

    I would appreciate any help
    You can break a window..
    You can eat an apple...
    But Penguins fight back..

  2. #2
    Join Date
    May 2011
    Location
    Mount Morris, MI
    Beans
    28
    Distro
    Ubuntu

    Talking Re: Acer aspire backlight issue 11.10

    solved

    sudo gedit /etc/default/grub

    Edit the two lines
    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor vga=792"
    GRUB_CMDLINE_LINUX="acpi_osi=Linux"

    sudo update-grub

    sudo reboot
    Last edited by techfighterminal; October 19th, 2011 at 09:32 AM.
    You can break a window..
    You can eat an apple...
    But Penguins fight back..

  3. #3
    Join Date
    Dec 2011
    Beans
    22

    Re: Acer aspire backlight issue 11.10

    sorry for the huge bump but is not working for me, and i have same laptop

  4. #4
    Join Date
    Feb 2011
    Location
    europe
    Beans
    3
    Distro
    Ubuntu

    Lightbulb Re: Acer aspire backlight issue 11.10

    I have an Acer 5334 and had the same problems. Since then I just downgraded to 10.04 since I like that one more than the latter 11.10. But to help you rather than just saying downgrade read my to do file I created for this very problem.
    The Intel GMA 4500M video card does not play well with later distros (That's at least what video card I have with this Acer Aspire). The back-light does not turn on properly so prepare to have a flash light next to you. To fix this you'll have to open the terminal and type this:

    Code:
    sudo setpci -s 00:02.0 F4.B=00
    I recommend if you want to install the later versions of ubuntu based OS's that you run the live cd first open terminal and enter the above statement then install. Keep in mind that this is a temp fix at the moment. I will share how to further fix permanently. Once you have installed and rebooted. Re-type
    Code:
    sudo setpci -s 00:02.0 F4.B=00
    in the terminal so you can see without your trusty flash light/cellphone led flash light. Now that you can see properly type in the terminal
    Code:
    gedit ./etc/pm/sleep.d/9_lcd_backlight.sh
    (if not gedit then any other text editor) this will create the file 9_lcd_backlight.sh. 9 is the priority you can put any number through 99 I believe, but it doesn't matter in this case. Paste the following below into the file you created, this will make sure when you boot from suspend or hibernate the back-light will be activated.

    Code:
    #!/bin/bash
        case $1 in
            thaw)
            setpci -s 00:02.0 F4.B=0
                echo "oh, suspend to disk is over, we are resuming..."
            ;;
            resume)
            setpci -s 00:02.0 F4.B=0
                echo "hey, the suspend to RAM seems to be over..."
            ;;
            *)  echo "here we GO!."
            ;;
        esac
    With the bash file in place you now need to make the file executable. Make sure you are in the directory ./etc/pm/sleep.d/ and type this in the terminal:
    Code:
    chmod +x 9_lcd_backlight.sh
    Once the bash file is now executable lets make sure the back-light turns on when you boot up. Input the next 2 lines in ./etc/rc.local file at the bottom line. So type in the terminal:

    Code:
    gedit ./etc/rc.local
    This will open rc.local file. Now at the bottom make sure it looks like below and save.

    Code:
    sudo setpci -s 00:02.0 F4.B=00
    exit 0
    You should be fine, reboot and check it out.

  5. #5
    Join Date
    Feb 2012
    Beans
    1

    Re: Acer aspire backlight issue 11.10

    CoDelishus yours was the best answer. Thank you so so much. In tackling this backilight issue I, a very new ubuntu user, have learned much. In case you are a new user and are having these same problems the above answer might have a few hitches.
    For example
    >when i tried to save 9_lcd_backlight.sh to the sleep.d folder I was not allowed because i am not a root user. What I had to do was save a gedit file in the same name in the home folder and move (mv command) the file to sleep.d folder. Of course I had to prefix mv with sudo.
    >Even the chmod command needed to be prefixed with sudo.
    >There were problems again in editing the rc.local file. As with the 9_lcd_backlight.sh file i had to make a new gedit file with name rc.local01 name elsewhere(home folder), copy the lines from the actual rc.local file into the rc.local01 file, add the two lines at the end as instructed by CoDelishus and saved it. Move (sudo mv command) the file to the etc folder and rename the files. By this time you will have tested the changes and will see that when the computer comes out of sleep or hibernation it works just fine BUT startup after a shutdown is still not working. This took the longest time to solve... All you have to do is right click on rc.local file you made, click on Permissions tab and check the box that says 'Allow executing file as program.

    As a new user, the above is my way of solving the problem at hand. Might not be the most efficient. please try my solution ONLY if the above doesn't seem to be working. Thanks and good luck.

  6. #6
    Join Date
    Feb 2011
    Location
    europe
    Beans
    3
    Distro
    Ubuntu

    Re: Acer aspire backlight issue 11.10

    Quote Originally Posted by ambardeepdas View Post
    CoDelishus yours was the best answer. Thank you so so much. In tackling this backilight issue I, a very new ubuntu user, have learned much. In case you are a new user and are having these same problems the above answer might have a few hitches.
    For example
    >when i tried to save 9_lcd_backlight.sh to the sleep.d folder I was not allowed because i am not a root user. What I had to do was save a gedit file in the same name in the home folder and move (mv command) the file to sleep.d folder. Of course I had to prefix mv with sudo.
    >Even the chmod command needed to be prefixed with sudo.
    >There were problems again in editing the rc.local file. As with the 9_lcd_backlight.sh file i had to make a new gedit file with name rc.local01 name elsewhere(home folder), copy the lines from the actual rc.local file into the rc.local01 file, add the two lines at the end as instructed by CoDelishus and saved it. Move (sudo mv command) the file to the etc folder and rename the files. By this time you will have tested the changes and will see that when the computer comes out of sleep or hibernation it works just fine BUT startup after a shutdown is still not working. This took the longest time to solve... All you have to do is right click on rc.local file you made, click on Permissions tab and check the box that says 'Allow executing file as program.

    As a new user, the above is my way of solving the problem at hand. Might not be the most efficient. please try my solution ONLY if the above doesn't seem to be working. Thanks and good luck.
    Hey thanks for the kudos, you are correct ambardeepdas. Before this code

    Code:
    gedit ./etc/pm/sleep.d/9_lcd_backlight.sh
    you should be in root. I apologize for the confusion and late response.

  7. #7
    Join Date
    Jun 2013
    Beans
    1

    Re: Acer aspire backlight issue 11.10

    Quote Originally Posted by CoDelishus View Post
    I have an Acer 5334 and had the same problems. Since then I just downgraded to 10.04 since I like that one more than the latter 11.10. But to help you rather than just saying downgrade read my to do file I created for this very problem.
    The Intel GMA 4500M video card does not play well with later distros (That's at least what video card I have with this Acer Aspire). The back-light does not turn on properly so prepare to have a flash light next to you. To fix this you'll have to open the terminal and type this:

    Code:
    sudo setpci -s 00:02.0 F4.B=00
    I recommend if you want to install the later versions of ubuntu based OS's that you run the live cd first open terminal and enter the above statement then install. Keep in mind that this is a temp fix at the moment. I will share how to further fix permanently. Once you have installed and rebooted. Re-type
    Code:
    sudo setpci -s 00:02.0 F4.B=00
    in the terminal so you can see without your trusty flash light/cellphone
    led light . Now that you can see properly type in the terminal
    Code:
    gedit ./etc/pm/sleep.d/9_lcd_backlight.sh
    (if not gedit then any other text editor) this will create the file 9_lcd_backlight.sh. 9 is the priority you can put any number through 99 I believe, but it doesn't matter in this case. Paste the following below into the file you created, this will make sure when you boot from suspend or hibernate the back-light will be activated.

    Code:
    #!/bin/bash
        case $1 in
            thaw)
            setpci -s 00:02.0 F4.B=0
                echo "oh, suspend to disk is over, we are resuming..."
            ;;
            resume)
            setpci -s 00:02.0 F4.B=0
                echo "hey, the suspend to RAM seems to be over..."
            ;;
            *)  echo "here we GO!."
            ;;
        esac
    With the bash file in place you now need to make the file executable. Make sure you are in the directory ./etc/pm/sleep.d/ and type this in the terminal:
    Code:
    chmod +x 9_lcd_backlight.sh
    Once the bash file is now executable lets make sure the back-light turns on when you boot up. Input the next 2 lines in ./etc/rc.local file at the bottom line. So type in the terminal:

    Code:
    gedit ./etc/rc.local
    This will open rc.local file. Now at the bottom make sure it looks like below and save.

    Code:
    sudo setpci -s 00:02.0 F4.B=00
    exit 0
    You should be fine, reboot and check it out.
    Hello friend i am just facing similar problem with my acer laptop.. I will surely follow above mentioned steps and try to solve it.. Thanks for sharing information and i will post my experience very soon
    Last edited by lawrencecar; June 24th, 2013 at 08:27 AM.

  8. #8
    Join Date
    Dec 2012
    Beans
    5

    Re: Acer aspire backlight issue 11.10

    Quote Originally Posted by techfighterminal View Post
    solved

    sudo gedit /etc/default/grub

    Edit the two lines
    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor vga=792"
    GRUB_CMDLINE_LINUX="acpi_osi=Linux"

    sudo update-grub

    sudo reboot
    HI. excuse me, but, how can edit if the screen in black????

  9. #9
    Join Date
    Jun 2013
    Beans
    2

    Cool Re: Acer aspire backlight issue 11.10

    Quote Originally Posted by techfighterminal View Post
    solved

    sudo gedit /etc/default/grub

    Edit the two lines
    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor vga=792"
    GRUB_CMDLINE_LINUX="acpi_osi=Linux"

    sudo update-grub

    sudo reboot
    CONFIRMED this method WORKS for Acer Aspire V3-771G-6485 on Ubuntu 13.04 64-bit (UEFI mode). Backlight turns ON during BOOT.
    Last edited by Colabear8900; June 1st, 2013 at 08:26 PM. Reason: Clarity

  10. #10
    Join Date
    Aug 2013
    Beans
    1

    Thumbs up Re: Acer aspire backlight issue 11.10

    Quote Originally Posted by techfighterminal View Post
    solved

    sudo gedit /etc/default/grub

    Edit the two lines
    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor vga=792"
    GRUB_CMDLINE_LINUX="acpi_osi=Linux"

    sudo update-grub

    sudo reboot
    This Solution works for Acer Aspire 5332

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •