This is a template for a future guide to running Linux with the Acer Aspire 5334 laptop. If you have the Acer Aspire 5334 and are running Linux on it please consider editing this page or adding a comment below with your compatibility details. By contributing you will help other people running this laptop or trying to make a decision on whether to buy it or not.
This page is just for discussing using Linux on the Acer Aspire 5334. For a general discussion about this laptop you can visit the Acer Aspire 5334 page on LapWik.
First of all, Acer 5334 (I have 5334-2598) works well with distros of ubuntu/xubuntu and other popular distros. Except with distros after 10.10. The Intel GMA 4500M video card does not play well with later distros. 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:
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
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
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.
#!/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:
chmod +x 9_lcd_backlight.sh
for some reason it isn't showing the plus sign before the x in the line above. So make sure it looks like: chmod plussignx 9_lcd_backlight.sh For more info go to http://linuxconfig.org/Bash_scripting_Tutorial
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:
gedit ./etc/rc.local
This will open rc.local file. Now at the bottom make sure it looks like below and save.
sudo setpci -s 00:02.0 F4.B=00
exit 0
You should be fine, reboot and check it out.
Iyad, Sunday 08 of January, 2012 [17:44:06]
Thanks great guide!! I tried it with Linux Mint 12 distribution and it works. Following your instructions resolved the back-light issue I had. However, the dim up/down keys do not appear to work. No big deal since the default brightness is fine with me.
Search
Sister Sites Lination - Blogging site for Linux users LinWik - Linux guides in wiki format
Discussion
To those who own this laptop,
First of all, Acer 5334 (I have 5334-2598) works well with distros of ubuntu/xubuntu and other popular distros. Except with distros after 10.10. The Intel GMA 4500M video card does not play well with later distros. 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:
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
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
(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.
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:
for some reason it isn't showing the plus sign before the x in the line above. So make sure it looks like:
chmod plussignx 9_lcd_backlight.sh For more info go to http://linuxconfig.org/Bash_scripting_Tutorial
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:
This will open rc.local file. Now at the bottom make sure it looks like below and save.
You should be fine, reboot and check it out.
Thanks great guide!! I tried it with Linux Mint 12 distribution and it works. Following
your instructions resolved the back-light issue I had. However, the dim up/down keys do
not appear to work. No big deal since the default brightness is fine with me.