How to Turn Off Lenovo Conservative mode using ubuntu

I am unable to Turn Off Lenovo Conservative mode using ubuntu

2

2 Answers

This may be because the Conservation Mode setting is enabled. Conservation Mode limits your battery charge to 55-60% to increase the duration for which you can get the maximum out of your battery. If you have a dual boot with Windows installed, boot into Windows, install Lenovo's Energy Manager, open Energy Manager, select the Settings tab, and disable Conservation Mode by toggling the slider from 1 to 0.

enter image description here

6

Find the path for the conservation mode setting in /sys/bus/platform/drivers/ideapad_acpi using ls /sys/bus/platform/drivers/ideapad_acpi.

In my case, the path is /sys/bus/platform/drivers/ideapad_acpi/VPC2004:00/conservation_mode

You can then run (adjusting the path as needed)

echo 0 | sudo tee /sys/bus/platform/drivers/ideapad_acpi/VPC2004:00/conservation_mode

1 means conservation mode is active. Change it to 0 to disable it.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like