You are not logged in.
Pages: 1
I just got a laptop (Gateway M520X) and am in the final stages of setting it up. I definitely want this machine to be able to suspend. I'm curious to hear from the community on what they are using and how well it works on their particular laptop.
Offline
The standard pm-suspend that comes in pm-utils works fine for me, with a little customizing to bring the network and sound back.
Offline
I use a custom script I wrote to handle the proper unloading and loading of modules and whatnot. Necessary for me since my macbook is extremely finicky when it comes to suspend.
#!/bin/sh
/etc/rc.d/network stop # Stop network service
modprobe -r ath_pci # Stop wireless module
modprobe -r sky2 # Unload ethernet module
echo -n mem > /sys/power/state # Suspend
chvt 1; vbetool post; chvt 7 # Restore consoles
modprobe sky2 # Load ethernet module
modprobe ath_pci # Load wireless module
/etc/rc.d/network start # Start network service
echo 2300 > /sys/devices/platform/applesmc.768/fan1_min # Set minimum fan speed
echo ondemand > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
echo ondemand > /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor
Who is this doin' this synthetic type of alpha beta psychedelic funkin'?
Offline
Compaq V3000 - smooth sailing, KLaptop
current uptime: 03 days 08 hrs 06 mins
out-of-ac-time per day: 06 hrs net, so suspend somewhere around 3 to 4 times a day
surprisingly jack has been working well on stock kernel so i need not reboot.
Last edited by schivmeister (2008-01-25 19:14:14)
I need real, proper pen and paper for this.
Offline
Pages: 1