Q. I’m using Redhat enterprise Linux desktop / workstation operating system with HP laptop. Several Linux distributions have a / script to enable to disable Laptop mode but Redhat misses the script. How do I enable or disable laptop mode on fly?
A. Modern Linux kernel includes very good support for Laptop mode. It is use to control the IO subsystem. When laptop mode is enabled, the Linux will try to be smart about when to do disk I/O. It gives as much time as possible to be in a low power state. If mode is disabled if value is set to zero (0). To enable mode use non zero value such as 5.
Display or print current Laptop mode
Type the following command:
$ cat /proc/sys/vm/laptop_mode
Output:
0
Turn on or enable Laptop mode
Type the following command as the root user:
$ sudo echo 5 > /proc/sys/vm/laptop_mode
OR
# echo 5 > /proc/sys/vm/laptop_mode
A note about Ubuntu Linux
According to this page:
Ubuntu has a laptop-mode-tools package, which is installed by default on laptops. However, laptop mode is disabled by default in Ubuntu Edgy (6.10), because some people have been experiencing hangups with it on certain laptops (mostly Thinkpads). Until now, nobody has any clue what is happening here. To reenable laptop mode, edit /etc/default/acpi-support and set ENABLE_LAPTOP_MODE=true.
If you want to use the latest version of laptop mode tools, you can use the Debian packages, they are compatible enough to work out-of-the-box on Ubuntu.
A note about Suse Linux
=> Suse Linux comes with powersaved tool, so please ignore above commands for power saving.
Updated for accuracy.
Featured Articles:
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- My 10 UNIX Command Line Mistakes
- 10 Greatest Open Source Software Of 2009
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- Top 20 OpenSSH Server Best Security Practices
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Linux Video Editor Software
- Email FAQ to a friend
- Download PDF version
- Printable version
- Comment RSS feed
- Last Updated: 12/23/07



{ 7 comments… read them below or add one }
The actual command needs a > symbol in it like follows:
sudo echo 5 > /proc/sys/vm/laptop_modeOwen,
Thanks for the heads up.
Your Welcome,
I’ve ran into that problem on my blog before.
note that “sudo echo > root-owned-file” doesn’t work, since you echo as root but will still be writing via your shell, which is running as your regular user. I do realize it says ‘do this as root’ but it’s still a bit misleading. And if you’re already root, why sudo?
as non-root try:
sudo -s
echo 5 > /proc/csys/vm/laptop_mode
exit
sudo bash -c “echo 5 > /proc/sys/vm/laptop_mode”
laptop mode is broken in Ubuntu. It keeps spinning the drive up/down at 10 second intervals, seems nobody have gotten the parameters right so it becomes usable.
I hope it becomes sorted out. Until then its off for me.
While its true its broken, its also due to merge not happening of laptop-mode-tools.
https://bugs.launchpad.net/ubuntu/+source/laptop-mode-tools/+bug/422620