How to get wireless working on ANY linux distribution with kernel version 2.6.39 or later
http://bugzilla.intellinuxwireless.org/show_bug.cgi?id=2325 (your welcome
create /etc/modprobe.d/iwl.conf with the following:
#!/bin/sh
options iwlwifi bt_coex_active=0
or depending on kernel version
#!/bin/sh
options iwlagn bt_coex_active=0
How to fix the system suspend not working
create file and chmod +x file, suspend as normal
#!/bin/sh
# File: “/etc/pm/sleep.d/20_custom-ehci_hcd”.
case “${1}” in
hibernate|suspend)
# Unbind ehci_hcd for first device 0000:00:1a.0:
echo -n “0000:00:1a.0″ | tee /sys/bus/pci/drivers/ehci_hcd/unbind
# Unbind ehci_hcd for second device 0000:00:1d.0:
echo -n “0000:00:1d.0″ | tee /sys/bus/pci/drivers/ehci_hcd/unbind
;;
resume|thaw)
# Bind ehci_hcd for first device 0000:00:1a.0:
echo -n “0000:00:1a.0″ | tee /sys/bus/pci/drivers/ehci_hcd/bind
# Bind ehci_hcd for second device 0000:00:1d.0:
echo -n “0000:00:1d.0″ | tee /sys/bus/pci/drivers/ehci_hcd/bind
;;
esac
~penguinbait


