How to start wifi-radar after suspend in Xubuntu 6.06
Note: I already have a script in /etc/init.d/ called “wifi-radar” that starts wifi-radar in daemon mode. I also have a file /etc/acpi/resume.d/62-ifup.sh and no script in that directory that begins with “63″, so I’ll just add a script after 62-ifup.sh, like this:
sudo nano /etc/acpi/resume.d/63-wifi-radar.sh
Add the following:
#!/bin/sh # Start wifi-radar daemon, if it is in the boot scripts if [ -x /etc/init.d/wifi-radar ]; then /etc/init.d/wifi-radar start fi