Hello,<br><br>I installed xubuntu-9.04 on my rather old laptop and noticed that pm-suspend was not working. pm-hibernate was ok. It seems pm-functions only supports suspend to &quot;mem&quot;. Perhaps this should be configurable as in acpi-support where you can select ACPI_SLEEP_MODE to be either &quot;mem&quot; or &quot;standby&quot;?<br>
<br>Anyway, I made quick fix that works for me:<br><br>--- pm-utils-1.2.5/pm/<a href="http://pm-functions.in">pm-functions.in</a>    2009-03-26 04:14:06.000000000 +0200<br>+++ pm-utils-1.2.5-flu/pm/<a href="http://pm-functions.in">pm-functions.in</a>    2009-05-10 23:50:42.000000000 +0300<br>
@@ -257,6 +257,9 @@<br>     if grep -q mem /sys/power/state; then<br>         SUSPEND_MODULE=&quot;kernel&quot;<br>         do_suspend() { echo -n &quot;mem&quot; &gt;/sys/power/state; }<br>+    elif grep -q standby /sys/power/state; then<br>
+        SUSPEND_MODULE=&quot;kernel&quot;<br>+        do_suspend() { echo -n &quot;standby&quot; &gt;/sys/power/state; }<br>     elif [ -c /dev/pmu ] &amp;&amp; pm-pmu --check; then<br>         SUSPEND_MODULE=&quot;kernel&quot;<br>
         do_suspend() { pm-pmu --suspend; }<br><br>ulf<br>