|
Even though this is a rather old post, I'll provide an answer in case others see this too.
Yes, there are sleep modes. Check the file
It should contain
indicating, that power management is working. If you want to suspend your system to RAM you can do so by writing mem to that file:
- ed@257EE39E:~$ echo mem | sudo tee /sys/power/state
- Password:
- mem
- [ 426.206631] PM: suspend entry (s2idle)
- [ 426.401365] Filesystems sync: 0.190 seconds
- [ 426.413647] Freezing user space processes ... (elapsed 0.001 seconds) done.
- [ 426.421930] OOM killer disabled.
- [ 426.425158] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
- [ 426.433743] printk: Suspending console(s) (use no_console_suspend to debug)
Copy code |
|