Date: Thu, 25 Nov 2010 23:42:24 +1100 (EST) From: Ian Smith <smithi@nimnet.asn.au> To: David DEMELIER <demelier.david@gmail.com> Cc: Bruce Cran <bruce@cran.org.uk>, Adam Vande More <amvandemore@gmail.com>, freebsd-questions@freebsd.org Subject: Re: How long laptop battery should live ? Message-ID: <20101125214233.B37255@sola.nimnet.asn.au> In-Reply-To: <AANLkTi=eKXnyU4wUCMtqorEoMCw4uH9ZB9AYDX%2BDRCQx@mail.gmail.com> References: <20101124024133.07F28106575F@hub.freebsd.org> <20101124144746.H37255@sola.nimnet.asn.au> <AANLkTimUfy8T4CwoNsTdcOYK9nyVXPXstUQ6oEMX=knd@mail.gmail.com> <20101124111153.2cb2bfb1@core.draftnet> <AANLkTi=eKXnyU4wUCMtqorEoMCw4uH9ZB9AYDX%2BDRCQx@mail.gmail.com>
next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, 24 Nov 2010, David DEMELIER wrote:
> Thanks for all your answers, I guess my battery is getting on its end of life..
>
> After running 30 minutes on battery, the percent is still 100% while
> the remaining time is slowly decreasing.. Aaaah buying a new battery
> costs around $134 !
Despite what its internal chip [mis-]reports, how long will it actually
run on this battery with a moderate or no load? Watching actual battery
voltage, say once a minute as it runs down, or while charging, will give
you a much better idea of real condition. I tend to run something like:
% cat ~/bin/t23loop
#!/bin/sh
[ "$1" ] && sleep=$1 || sleep=60
while true; do
t23stat | tee -a ~/t23loop.out
sleep $sleep
done
% cat ~/bin/t23stat
#!/bin/sh
echo -n "`date` "
sysctl dev.cpu.0.freq dev.cpu.0.cx_usage
sysctl dev.acpi_ibm | egrep 'fan_|thermal'
sysctl hw.acpi.thermal.tz0.temperature
acpiconf -i0 | egrep 'State|Remain|Present|Volt'
.. but just logging date and the acpiconf would be enough for this.
Have you tried one round of the battery meter conditioning I mentioned,
to see if it shows any improvement? Worked for me, anyway <shrug>
> I think I could live a few months before buying a new one but it sucks :-/
Clues to save power may be helpful but don't really address this issue;
still, one of the best is http://wiki.freebsd.org/TuningPowerConsumption
cheers, Ian
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20101125214233.B37255>
