Re: How do I run a script on unsuspend?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Fri, 2008-08-15 at 13:36 -0500, Terry Letsche wrote:
> I'm baffled on how F9 "knows" to suspend to disk when I close my laptop lid.

Have a look in the power management (personal) preferences, which can
also be found through the screensaver preferences (in Gnome, at least).

> Anyway, specifically, my wireless gets messed up with a hibernate, so I'd like
> to either a) do an 'ifup wlan0' on a resume from hibernation, or
> b) rmmod rtl8187, etc. going into the hibernation, with modprobe rtl8187, etc.
> and an ifup wlan0 on unsuspend. How would I do this?

A script in /etc/pm/sleep.d/ along the lines of this template:

--------------------------------------------------------------------

#!/bin/bash

case "$1" in

        hibernate|suspend)
                #your sleeping commands go here
                ;;

        thaw|resume)
                #your waking commands go here 
                ;;

        *)
                ;;

esac

exit $?

-----------------------------------------------------------------------

But if you're using NetworkManager, it *should* be doing whatever's
necessary by itself, already.  Of course that doesn't mean that it
actually *does*.  :-\

  less /usr/lib/pm-utils/sleep.d/10NetworkManager

If you need some more clues, "rpm -qil pm-utils", and read through some
of the listed files.

-- 
[tim@localhost ~]$ uname -r
2.6.25.11-97.fc9.i686

Don't send private replies to my address, the mailbox is ignored.  I
read messages from the public lists.



-- 
fedora-list mailing list
fedora-list@xxxxxxxxxx
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
[Index of Archives]     [Older Fedora Users]     [Fedora Announce]     [Fedora Package Announce]     [EPEL Announce]     [Fedora Magazine]     [Fedora News]     [Fedora Summer Coding]     [Fedora Laptop]     [Fedora Cloud]     [Fedora Advisory Board]     [Fedora Education]     [Fedora Security]     [Fedora Scitech]     [Fedora Robotics]     [Fedora Maintainers]     [Fedora Infrastructure]     [Fedora Websites]     [Anaconda Devel]     [Fedora Devel Java]     [Fedora Legacy]     [Fedora Desktop]     [Fedora Fonts]     [ATA RAID]     [Fedora Marketing]     [Fedora Management Tools]     [Fedora Mentors]     [SSH]     [Fedora Package Review]     [Fedora R Devel]     [Fedora PHP Devel]     [Kickstart]     [Fedora Music]     [Fedora Packaging]     [Centos]     [Fedora SELinux]     [Fedora Legal]     [Fedora Kernel]     [Fedora OCaml]     [Coolkey]     [Virtualization Tools]     [ET Management Tools]     [Yum Users]     [Tux]     [Yosemite News]     [Gnome Users]     [KDE Users]     [Fedora Art]     [Fedora Docs]     [Asterisk PBX]     [Fedora Sparc]     [Fedora Universal Network Connector]     [Libvirt Users]     [Fedora ARM]

  Powered by Linux