Comment 22 for bug 31425

Revision history for this message
Brian J. Murrell (brian-interlinx) wrote :

Using a small variation of the two scripts in https://bugs.launchpad.net/ubuntu/+source/acpi-support/+bug/31425/comments/14:

#!/bin/bash

statedir=/root/s3/state

mkdir -p $statedir
chvt 2
sleep 1
vbetool vbestate save >$statedir/vbe

curcons=`fgconsole`
fuser /dev/tty$curcons 2>/dev/null|xargs ps -o comm= -p|grep -q X && chvt 2
sync
echo platform > /sys/power/disk; echo mem > /sys/power/state
sync
vbetool post
vbetool vbestate restore <$statedir/vbe
chvt $[curcons%6+1]
chvt $curcons

(as you can see, I combined them. I'm really not sure why he wrote them as two scripts in the first place)

I can get this to work once, but if I invoke it a second time, I get the same video corruption as just trying to suspend without the script.

That's gotta mean something to somebody. :-)