Can't help you directly, but powertop can be used to monitor/tweak momentary power usage.
Linux
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
Thanks, I do like powertop
. I think it's pretty good for short measurements, e.g. over 30 seconds:
% sudo powertop --time=30
The battery reports a discharge rate of 4.17 W
The energy consumed was 125 J
The estimated remaining time is 11 hours, 4 minutes
But in the real world I will not be getting 11 hours of runtime. The moment I start a browser or play a video, power consumption goes way up.
Well, no program can accurately predict how you are going to use your laptop in the next hours. The best you can do is sample a given reference period and assume it'll be the same but you have already noted the problem with that.
I'd recommend you monitor total power draw while using your laptop. It's inversely proportiaonal to battery life: If you could reach 10h at 5W, you'd only reach 5h at 10W, 2.5h at 20W and so on; you can think of it as a metric for battery drain.
Agreed, that sounds like the way to go. I was hoping there was already something to do the monitoring for me :)
If you're technically inclined, a simple bash script with a for loop could dump the time and discharge rate to a text file every minute. Then you could copy/paste that into LibreOffice calc and do yourself some pretty graphs, or whatever.
edit: just found a tool called powerstat which looks like it does sampling over longer intervals.
sudo apt install powerstat
Interesting, hadn't heard of powerstat
. I'll be checking that, thanks!
🤷🏼♂️