ASUS S5N and the 2.6.10-1.741_FC3 kernel and s3 sleep seems to work now. In all previous FC3 kernels(724,681,667), it seemed to die when you woke it up again. Other random info about my setup: - Asus S5N with the 210 bios update. - Here's my entry in grub.conf: *********************************************************************** title Fedora Core (2.6.10-1.741_FC3) root (hd0,0) kernel /vmlinuz-2.6.10-1.741_FC3 ro root=LABEL=/ rhgb quiet acpi_sleep=s3_bios pm=off vga=0x317 video=vesa:ywrap,mtrr splash=silent *********************************************************************** - Heres the command I run to send the notebook to sleep: *********************************************************************** #!/bin/bash # suspend-to-ram : Sends the machine to S3, # performing some tasks before and after wakeup. PATH=/bin:/usr/bin:/usr/sbin:/sbin:/usr/local/sbin /usr/bin/killall synergyc echo -e "3[1;31mInitiating suspend-to-ram 3[0m" # Empty logfile echo > /tmp/suspend.log /etc/init.d/hotplug stop >> /tmp/suspend.log 2>&1 /etc/init.d/acpid stop >> /tmp/suspend.log 2>&1 # Go, sleep! echo 3 > /proc/acpi/sleep echo -e "3[1;32m... back 3[0m" # http://bugme.osdl.org/show_bug.cgi?id=3609 setpci -s 00:1f.0 f2.b=1 /etc/init.d/acpid start >> /tmp/suspend.log 2>&1 & /etc/init.d/hotplug start >> /tmp/suspend.log 2>&1 & *********************************************************************** Note: I don't claim to be the author of any of the code above. I just dug it up from googling around the net. Thanks people Cheers -- Matthew Faull <matt at rairyu.tk>