Acer Aspire One Battery Issues

December 23rd, 2009 1 comment

A couple of days ago I opened up my AAO and discovered that it was out of charge. I plugged it in and started using it, then I spotted that the power indicator said the battery was full. I knew that couldn’t be right as it was only 5 minutes since I plugged it in.

I stopped what I was doing and shutdown, then I removed the power and attempted to turn on again. Once more the machine wouldn’t turn on but I noted that the charging light wasn’t showing either.

A quick google and I discovered that I was not alone with this issue. It seems two types of AAO (the AOA100 and AOA150) can suffer from this problem. There is a fix and a workaround, the fix is obviously the better option. The workaround is to unplugged the battery from the device then power it up. After a moment, plug the battery back in and it should start charging, not ideal.

The fix is to download a BIOS update and patch it! Obviously you must insure that your AAO is the correct model before you attempt to flash the BIOS otherwise you might leave yourself with a very pretty brick. To ensure this you should find a label on the bottom of you device saying AOA150 or AOA100. Although my model indicated ZG5, a quick check on another label and I spotted AOA150.

The instructions on how to do this are available from Acer’s Support website. I will reproduce here what I did:

  1. Turn on the netbook and enter the BIOS by pressing the button F2
  2. Take note of the version number, this should change if the upgrade is successful.
  3. Open a browser and go to the Acer website.
  4. Browse through: Service & Support > Driver Download > Netbook > Aspire One > AOA150 (or 100) > BIOS
  5. Donwload the file, it will be a zip.
  6. Extract the zip and rename the file 3310.fd to be zg5ia32.fd.
  7. Plug in a USB stick, and copy two files over, the zg5ia32.fd and FLASHIT.EXE
  8. Make sure you have your netbook plugged in and powered on.
  9. Power down the netbook
  10. Press and hold down the Fn and Esc keys and then press the power button
  11. When the power light comes on, wait a couple of seconds and then let go of the buttons
  12. It will look like very little is happening, the screen stays blank, but you should see your USB light blinking.
  13. After a while (it took around 2 minutes for me) the netbook will reboot itself and power on.

After this I powered up the device and spotted that the same thing was occurring. I rebooted and did the same process again. This time I entered the BIOS and spotted that the version number had changed.

So once it was back up, I waited a few minutes and spotted that the power indicator said it was charging the battery, success! Whilst I would normally not advise this sort of process for the average user, Acer had made it relatively simple and I feel some what foolproof.

Obviously if it doesn’t work for you then the next step would be to try the workaround or maybe go ahead and contact Acer if your warranty is still valid.

Oh and Happy Christmas to all :) !

Tags: , ,

Updates

November 19th, 2009 No comments

So it has been a while since I posted last and I felt like updating and cleaning stuff up. The tags and categories have been improved and reduced to help with clarity. I have switched to a new theme, although it is still created by the previous designer.

I have also added a Google CSE to assist with searching for a particular post, although I don’t exactly have too many.

I am very impressed with how WordPress has improved over recent times. The automatic upgrade is impressive and will surely ensure that less WP installs are hacked. The theme/plug-in search is quick and very easy to use, thus insuring that people will not be stuck with one design, or missing a vital plug-in. These two can be upgraded on the fly. Overall a real improvement proving that WP is a mature and stable piece of software.

There is only one minor annoyance and that is the speed at which pages are served, I do feel it could be slightly quicker.

Hope you all enjoy the updates that I applied!

Tags: ,

Acer Aspire One Tips

September 29th, 2009 No comments

Just came across a really good site with lots of tips and tricks for the AA1.

I have owned this dinky wee notebook for sometime now and can highly advise it for anyone looking for a Linux Notebook.

Some tricks I have are:

Alt+F2 > xfce-settings-show > Desktop > Behaviour > Show desktop menu on right click.
The will enable the XFCE menu on right click, which is useful to me.

Alt+F2 > xfce-settings-show > Sessions and Startup > Advanced > Launch Gnome services on startup
This will allow NetworkManger to use gnome-keyring and therefore finally store the keys for wireless!

Simple but effective!

Tags: ,

Renaming Files In A Directory

September 2nd, 2009 1 comment

So I had a problem on Windows in that I have lots of directories that are named correctly but I wish the files under them to be uniformly named.

The solution was to use PowerShell, which is an extremely effective scripting tool for Windows, especially if you come from a UNIX shell background.

There is actually quite a lot of documentation available for it and rather than go into detail I will simply show you the script:

#
# RenameDirectoryFiles.ps1
#
 
param( [string[]]$paths )
Set-PSDebug -Strict
 
foreach ( $path in $paths ) {
    if ( !(Test-Path $path -PathType Container) ) {
        Write-Error "'$path' doesn't exist or isn't a directory"
        exit 1
    }
 
    $i = 0
    Get-ChildItem $path | sort FullName | foreach {
        $tmp = "{0:000}" -f $i
        $ext = $_.Extension
        $newname = "$path - $tmp$ext"
        Rename-Item $_.fullname $newname
        $newname
        $i = $i + 1
    }
}

So the usage is extremely simple:

RenameDirectoryFiles.ps1 'My Directory'

After which all the files under ‘My Directory’ will be renamed to ‘My Directory – 000.fileextension’.

Tags: ,

Microsoft Business Productivity Racism?

August 25th, 2009 No comments

I was recently pointed to the English and Polish pages for the MS Business Productivity. The most striking thing about the difference between the pages is that one depicts a white individual in place of a black individual. What could be the purpose of altering the image, surely it isn’t racism, after all the Chinese individual is still in place.

Strange what goes through the brain of MS Business Productivity.

Polish Alternative

Polish Alternative

English Alternative

English Alternative

Tags: , ,