Saturday, June 11, 2005
I just installed Fedora Core 3. Now what?
If you're like me, don't know what's next, take a look at this link.
Friday, June 03, 2005
How to make ipw2100 module work with suspend/resume
ipw2100 module needs to be removed from the kernel before suspending. Otherwise it won't be operational on resume. To accomplish that something like this needs to be added to /etc/acpi/actions/sleep file:
#!/bin/bash
if grep -q closed /proc/acpi/button/lid/LID/state
then
/sbin/modprobe -r ipw2100
echo -n "mem" > /sys/power/state
/sbin/modprobe ipw2100
/sbin/ifup eth1
fi
Subscribe to:
Posts (Atom)