Ik zag bij de laatste nieuwe livecd staan dat je usb0 hebt toegevoegd aan proc/acpi/wakeup.
Hoe doe je dit?
Ik zag bij de laatste nieuwe livecd staan dat je usb0 hebt toegevoegd aan proc/acpi/wakeup.
Hoe doe je dit?
lees dit http://wiki.xbmc.org/?title=Enable_Wake-On-Device
Committing to rc.local
Edit /etc/rc.local and add the echo commands required to enable authorized devices
sudo gedit /etc/rc.local
EG.
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
echo USB0>/proc/acpi/wakeup
echo "rc.local has completed sucessfully." >> /tmp/resume.log
exit 0
You must log in to post.