<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Powersave mode extrem]]></title><description><![CDATA[<p dir="auto"><strong>My personal use of cell phones:</strong></p>
<ul>
<li>Calls + text messages: I want to be reachable at all times</li>
<li>I only use the browser, email, messaging apps, cloud services, and other apps when necessary (like a camera)</li>
</ul>
<p dir="auto">Most days, the phone is unused for 90% of the time it’s turned on. So for 90% of my usage, even a Nokia 3210 (with up to 260 hours of battery life) would suffice.</p>
<p dir="auto">Task: Given this usage pattern, how can I maximize battery life?</p>
<p dir="auto"><strong>Workaround:</strong></p>
<p dir="auto">Install and open “UT Tweak Tools”<br />
For all apps: Prevent background suspension = ON</p>
<ul>
<li>Location services = OFF</li>
<li>Bluetooth = OFF</li>
<li>Wi-Fi = OFF</li>
<li>Mobile data = OFF</li>
<li>G2 network (optional)</li>
</ul>
<p dir="auto">Then run the script in the terminal:<br />
...<br />
#!/bin/bash<br />
#Enables power-saving mode on all CPU cores</p>
<p dir="auto">for governor in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor; do<br />
echo "powersave" | sudo tee "$governor" &gt; /dev/null<br />
done</p>
<p dir="auto">echo “Power-saving mode has been enabled for all cores.”<br />
...</p>
<p dir="auto">New scenario:</p>
<ul>
<li>The phone enters deep sleep mode after a few minutes</li>
<li>You remain reachable by phone and text message</li>
<li>Set alarms and timers function normally</li>
<li>Power consumption drops to an incredible ~22mA (Pixel 3a)</li>
</ul>
<p dir="auto">As a result, in this state, the battery level drops by only about 1–3% over a 10-hour period. (Tested on the Pixel 3a) Theoretically, a full charge lasts more than a week with minimal use. (see pritscreen)</p>
<p dir="auto">Advantage: There are hardly any restrictions. You can turn on mobile data or Wi-Fi at any time and use any app with an internet connection. Afterward, turn Wi-Fi and mobile data off again.</p>
<p dir="auto">Usage:<br />
With appropriate usage habits, this can be the default mode. The reduced processor performance is barely noticeable. Only launching apps takes 1–2 seconds longer.</p>
<p dir="auto">The cores can be restored to normal performance using this script.<br />
...<br />
#!/bin/bash<br />
#Enables Schedutil mode (default) on all CPU cores</p>
<p dir="auto">for governor in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor; do<br />
echo "schedutil" | sudo tee "$governor" &gt; /dev/null<br />
done</p>
<p dir="auto">echo “Default mode (schedutil) has been enabled for all cores.”<br />
..,</p>
<p dir="auto">It would be perfect if a “super power-saving mode” like that could be built into UT.</p>
]]></description><link>https://forums.ubports.com/topic/12277/powersave-mode-extrem</link><generator>RSS for Node</generator><lastBuildDate>Sun, 17 May 2026 10:21:43 GMT</lastBuildDate><atom:link href="https://forums.ubports.com/topic/12277.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 17 May 2026 07:21:42 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Powersave mode extrem on Sun, 17 May 2026 09:59:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/moem" aria-label="Profile: Moem">@<bdi>Moem</bdi></a><br />
Yes, I thought so too, and it matches the description in the wiki. <a href="https://wiki.ubuntuusers.de/Ubuntu_Touch/UT_Tweak_Tool/" target="_blank" rel="noopener noreferrer nofollow ugc">https://wiki.ubuntuusers.de/Ubuntu_Touch/UT_Tweak_Tool/</a></p>
<p dir="auto">In my tests, however, the opposite was true. There might be another reason for this. I’ll repeat the test with different scenarios and log the power consumption in sleep mode.</p>
<p dir="auto">-10 hours of standby (all apps <strong>with</strong> background suspension)<br />
-10 hours of standby (all apps <strong>without</strong> background suspension)</p>
<p dir="auto">In any case, battery consumption in standby mode (accessible only via phone calls and text messages + alarm clock function) can be reduced to a minimum. It feels like a Nokia 3210 with up to 260 hours of battery life, with the difference that modern smartphone features are available at all times.</p>
]]></description><link>https://forums.ubports.com/post/95774</link><guid isPermaLink="true">https://forums.ubports.com/post/95774</guid><dc:creator><![CDATA[Linus67]]></dc:creator><pubDate>Sun, 17 May 2026 09:59:01 GMT</pubDate></item><item><title><![CDATA[Reply to Powersave mode extrem on Sun, 17 May 2026 08:51:38 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/linus67" aria-label="Profile: Linus67">@<bdi>Linus67</bdi></a> <a href="/post/95768">said</a>:</p>
<p dir="auto">background suspension set to ON means the app is frozen.</p>
</blockquote>
<p dir="auto">But that's not what UTTT does. It sets <em>PREVENT background suspension to ON</em>. In other words, it sets <em>background suspension to OFF</em>.</p>
<p dir="auto">For most apps on UT, background suspension is set to ON by default.</p>
]]></description><link>https://forums.ubports.com/post/95773</link><guid isPermaLink="true">https://forums.ubports.com/post/95773</guid><dc:creator><![CDATA[Moem]]></dc:creator><pubDate>Sun, 17 May 2026 08:51:38 GMT</pubDate></item><item><title><![CDATA[Reply to Powersave mode extrem on Sun, 17 May 2026 07:42:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/d4f0" aria-label="Profile: d4f0">@<bdi>d4f0</bdi></a></p>
<p dir="auto">In the context of IT and apps (smartphones or PCs)<br />
On mobile phones (such as Android or iOS) and computers, background suspension means that an app is temporarily frozen.</p>
<p dir="auto">So, in this case, background suspension set to ON means the app is frozen.</p>
]]></description><link>https://forums.ubports.com/post/95768</link><guid isPermaLink="true">https://forums.ubports.com/post/95768</guid><dc:creator><![CDATA[Linus67]]></dc:creator><pubDate>Sun, 17 May 2026 07:42:33 GMT</pubDate></item><item><title><![CDATA[Reply to Powersave mode extrem on Sun, 17 May 2026 07:33:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/linus67" aria-label="Profile: Linus67">@<bdi>Linus67</bdi></a> Why do you want to prevent background suspension? I think for your use case it would be better leaving it off, it uses less battery.</p>
]]></description><link>https://forums.ubports.com/post/95767</link><guid isPermaLink="true">https://forums.ubports.com/post/95767</guid><dc:creator><![CDATA[d4f0]]></dc:creator><pubDate>Sun, 17 May 2026 07:33:53 GMT</pubDate></item></channel></rss>