I am unable to Turn Off Lenovo Conservative mode using ubuntu
22 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.
6Find 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_mode1 means conservation mode is active. Change it to 0 to disable it.