Samsung Battery Life Extender - limit battery charging to 80% under Ubuntu
Some of you may have used Easy Settings app that's provided by Samsung for Windows OS. Similar Samsung's tool for Linux OS distributions isn't available.
I missed Battery Life Extender function the most: I don't want my battery to be unnecessarily fully charged when I don't often use laptop while on battery for long periods of time.
How does one activate / deactivate Battery Life Extender under Ubuntu OS?
laptop power-management battery samsung
add a comment |
Some of you may have used Easy Settings app that's provided by Samsung for Windows OS. Similar Samsung's tool for Linux OS distributions isn't available.
I missed Battery Life Extender function the most: I don't want my battery to be unnecessarily fully charged when I don't often use laptop while on battery for long periods of time.
How does one activate / deactivate Battery Life Extender under Ubuntu OS?
laptop power-management battery samsung
add a comment |
Some of you may have used Easy Settings app that's provided by Samsung for Windows OS. Similar Samsung's tool for Linux OS distributions isn't available.
I missed Battery Life Extender function the most: I don't want my battery to be unnecessarily fully charged when I don't often use laptop while on battery for long periods of time.
How does one activate / deactivate Battery Life Extender under Ubuntu OS?
laptop power-management battery samsung
Some of you may have used Easy Settings app that's provided by Samsung for Windows OS. Similar Samsung's tool for Linux OS distributions isn't available.
I missed Battery Life Extender function the most: I don't want my battery to be unnecessarily fully charged when I don't often use laptop while on battery for long periods of time.
How does one activate / deactivate Battery Life Extender under Ubuntu OS?
laptop power-management battery samsung
laptop power-management battery samsung
edited Mar 9 '17 at 18:04
Community♦
1
1
asked Jun 3 '16 at 11:24
gogecccgogeccc
17812
17812
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
This was tested and validated to work on Ubuntu 12.04 x64 - 14.04 x64 and Linux Mint 16 x64 - 17.3 x64 and Samsung NP300E5Z laptop.
Essentially, we need to change content of /sys/devices/platform/samsung/battery_life_extender
file to 1 or 0.
To turn on Battery Life Extender (run command from bash console):
sudo tee /sys/devices/platform/samsung/battery_life_extender <<<1
To turn off Battery Life Extender (run command from bash console):
sudo tee /sys/devices/platform/samsung/battery_life_extender <<<0
You may also use text editor, I used Sublime Text once.
There also seem to exist one or more aliases of above mentioned file, one being: /sys/bus/platform/devices/samsung/battery_life_extender
I tested and validated it because I used this workaround for straight 2 years. "This answer seems very much a copy / paste from somewhere" - I'll try to accept this as a complement to my writing style.
– gogeccc
Jun 3 '16 at 11:30
2
It is just that first line, yes take it as a compliment, it was the professional way it is written, that made me think it was a copy/paste :) +1
– Mark Kirby
Jun 3 '16 at 11:31
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f781296%2fsamsung-battery-life-extender-limit-battery-charging-to-80-under-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This was tested and validated to work on Ubuntu 12.04 x64 - 14.04 x64 and Linux Mint 16 x64 - 17.3 x64 and Samsung NP300E5Z laptop.
Essentially, we need to change content of /sys/devices/platform/samsung/battery_life_extender
file to 1 or 0.
To turn on Battery Life Extender (run command from bash console):
sudo tee /sys/devices/platform/samsung/battery_life_extender <<<1
To turn off Battery Life Extender (run command from bash console):
sudo tee /sys/devices/platform/samsung/battery_life_extender <<<0
You may also use text editor, I used Sublime Text once.
There also seem to exist one or more aliases of above mentioned file, one being: /sys/bus/platform/devices/samsung/battery_life_extender
I tested and validated it because I used this workaround for straight 2 years. "This answer seems very much a copy / paste from somewhere" - I'll try to accept this as a complement to my writing style.
– gogeccc
Jun 3 '16 at 11:30
2
It is just that first line, yes take it as a compliment, it was the professional way it is written, that made me think it was a copy/paste :) +1
– Mark Kirby
Jun 3 '16 at 11:31
add a comment |
This was tested and validated to work on Ubuntu 12.04 x64 - 14.04 x64 and Linux Mint 16 x64 - 17.3 x64 and Samsung NP300E5Z laptop.
Essentially, we need to change content of /sys/devices/platform/samsung/battery_life_extender
file to 1 or 0.
To turn on Battery Life Extender (run command from bash console):
sudo tee /sys/devices/platform/samsung/battery_life_extender <<<1
To turn off Battery Life Extender (run command from bash console):
sudo tee /sys/devices/platform/samsung/battery_life_extender <<<0
You may also use text editor, I used Sublime Text once.
There also seem to exist one or more aliases of above mentioned file, one being: /sys/bus/platform/devices/samsung/battery_life_extender
I tested and validated it because I used this workaround for straight 2 years. "This answer seems very much a copy / paste from somewhere" - I'll try to accept this as a complement to my writing style.
– gogeccc
Jun 3 '16 at 11:30
2
It is just that first line, yes take it as a compliment, it was the professional way it is written, that made me think it was a copy/paste :) +1
– Mark Kirby
Jun 3 '16 at 11:31
add a comment |
This was tested and validated to work on Ubuntu 12.04 x64 - 14.04 x64 and Linux Mint 16 x64 - 17.3 x64 and Samsung NP300E5Z laptop.
Essentially, we need to change content of /sys/devices/platform/samsung/battery_life_extender
file to 1 or 0.
To turn on Battery Life Extender (run command from bash console):
sudo tee /sys/devices/platform/samsung/battery_life_extender <<<1
To turn off Battery Life Extender (run command from bash console):
sudo tee /sys/devices/platform/samsung/battery_life_extender <<<0
You may also use text editor, I used Sublime Text once.
There also seem to exist one or more aliases of above mentioned file, one being: /sys/bus/platform/devices/samsung/battery_life_extender
This was tested and validated to work on Ubuntu 12.04 x64 - 14.04 x64 and Linux Mint 16 x64 - 17.3 x64 and Samsung NP300E5Z laptop.
Essentially, we need to change content of /sys/devices/platform/samsung/battery_life_extender
file to 1 or 0.
To turn on Battery Life Extender (run command from bash console):
sudo tee /sys/devices/platform/samsung/battery_life_extender <<<1
To turn off Battery Life Extender (run command from bash console):
sudo tee /sys/devices/platform/samsung/battery_life_extender <<<0
You may also use text editor, I used Sublime Text once.
There also seem to exist one or more aliases of above mentioned file, one being: /sys/bus/platform/devices/samsung/battery_life_extender
answered Jun 3 '16 at 11:24
gogecccgogeccc
17812
17812
I tested and validated it because I used this workaround for straight 2 years. "This answer seems very much a copy / paste from somewhere" - I'll try to accept this as a complement to my writing style.
– gogeccc
Jun 3 '16 at 11:30
2
It is just that first line, yes take it as a compliment, it was the professional way it is written, that made me think it was a copy/paste :) +1
– Mark Kirby
Jun 3 '16 at 11:31
add a comment |
I tested and validated it because I used this workaround for straight 2 years. "This answer seems very much a copy / paste from somewhere" - I'll try to accept this as a complement to my writing style.
– gogeccc
Jun 3 '16 at 11:30
2
It is just that first line, yes take it as a compliment, it was the professional way it is written, that made me think it was a copy/paste :) +1
– Mark Kirby
Jun 3 '16 at 11:31
I tested and validated it because I used this workaround for straight 2 years. "This answer seems very much a copy / paste from somewhere" - I'll try to accept this as a complement to my writing style.
– gogeccc
Jun 3 '16 at 11:30
I tested and validated it because I used this workaround for straight 2 years. "This answer seems very much a copy / paste from somewhere" - I'll try to accept this as a complement to my writing style.
– gogeccc
Jun 3 '16 at 11:30
2
2
It is just that first line, yes take it as a compliment, it was the professional way it is written, that made me think it was a copy/paste :) +1
– Mark Kirby
Jun 3 '16 at 11:31
It is just that first line, yes take it as a compliment, it was the professional way it is written, that made me think it was a copy/paste :) +1
– Mark Kirby
Jun 3 '16 at 11:31
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f781296%2fsamsung-battery-life-extender-limit-battery-charging-to-80-under-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown