Dell Mini 9 battery not recognized

Asked by Jeff Rush

My Dell Mini 9 laptop battery is not recognized by the computer. I previously was running 8.04 LTS, when it stopped recognizing it. I tried re-installing 8.04 from the cd that came with the computer, but I think the cd went bad, because it would stall during the installation process. I've since installed 11.04 successfully, but the system still does not recognize the battery.

After reading other forums, they recommend making sure the airplane mode was in the off position. This would make sense that would be the problem, as the problem first occurred after a flight I took, where I probably switched it to airplane mode.

11.04 doesn't seem to have the same airplane mode as 8.04. How can I check this airplane mode fix with 11.04? or do I need to revert to 8.04 to check it?

Is there another known fix?

Question information

Language:
English Edit question
Status:
Answered
For:
Ubuntu acpi Edit question
Assignee:
No assignee Edit question
Last query:
Last reply:
Revision history for this message
Eliah Kagan (degeneracypressure) said :
#1

This might help:
https://help.ubuntu.com/11.04/ubuntu-help/net-wireless-airplane.html

Or, there may be a setting explicitly for Airplane Mode in System Settings > Network. (I don't have an Ubuntu 11.04 system on hand right now to check.)

Revision history for this message
Jeff Rush (jeff-rush) said :
#2

This is not the same as the airplane mode with 8.04. It only seems to affect ten wireless card, and not the battery. Is 8.04 available for download somewhere online still?

Revision history for this message
Eliah Kagan (degeneracypressure) said :
#3

You can download DVD images for Ubuntu 8.04 LTS at http://cdimage.ubuntu.com/releases/8.04.4/release/. However, please note that, except for nongraphical servers utilizing only a subset of available functionality, Ubuntu 8.04 LTS is no longer supported, which means, among other things, that (1) you won't be likely to get very good help with it here, and (2) you won't receive security updates for newly discovered vulnerabilities. Because of that, I recommend against using Ubuntu 8.04 LTS.

Hopefully someone knows a way to achieve the same effect as enabling airplane mode, on Ubuntu 11.04, and will post here about it. Alternatively, you might try Ubuntu 10.04 LTS, which is still supported.

Revision history for this message
EricS (ericsellers) said :
#4

Flight mode on my phone disables all wireless connection. On my computer I click on the little wireless symbol on the bar in the top right and uncheck "enable wireless".
You said though that your battery wasn't being recognised. I had a problem where my wireless could not connect unless my battery was fully charged and the computer plugged in. If this is what you mean then I to have been waiting for a year to solve this one. Yesterday I finally found a solution. It seems somebody decided to put a script in that fiddles with the wireless when I'm on battery for some reason. This file is /user/lib/pm-utils/power.d . near the top of the file are the following lines:

get_wireless_params() {
    # $1 = interface
    # $2 = on or off
    unset iwpriv iwconfig iwlevel
    # added the following line.. take it out if it doesn't work
    # Don't do anything if we cannot find a driver for this iface.
    [ -L "/sys/class/net/$1/device/driver" ] || return 1
    # Skip if not a wireless card.
    [ -d "/sys/class/net/$1/wireless" ] || return 1

I added one line (the one in the middle) with sudo gedit :

get_wireless_params() {
    # $1 = interface
    # $2 = on or off
    unset iwpriv iwconfig iwlevel
    # added the following line.. take it out if it doesn't work
    return 1
    # Don't do anything if we cannot find a driver for this iface.
    [ -L "/sys/class/net/$1/device/driver" ] || return 1
    # Skip if not a wireless card.
    [ -d "/sys/class/net/$1/wireless" ] || return 1

Now I can connect even when I am unplugged no matter how much charge is left on my computer.

As a side note, I have an acer timeline x 1830T-68U118 and in order to get it to run in the first place I have to execute the line.

sudo modprobe -r acer-wmi

It would be nice if the next version of Ubuntu would recognise my computer and do these things for me.

Can you help with this problem?

Provide an answer of your own, or ask Jeff Rush for more information if necessary.

To post a message you must log in.