@wahooka
The only way that works for me is this way:
start a terminal and type:
Code:
cat /proc/acpi/wakeupOnly interesting settings are the folllowing (all USB Ports):
Quote:USB0 S4 disabled pci:0000:00:04.0
USB2 S4 disabled pci:0000:00:04.1
US15 S4 disabled pci:0000:00:06.0
US12 S4 disabled pci:0000:00:06.1
So you see, all Ports are disabled by default.
To enable them open the file /etc/rc.local
Code:
sudo gedit /etc/rc.localput the following lines before the exit 0 entry
Quote:# Enable wakeup for USB0Save the file !
status=`cat /proc/acpi/wakeup | grep "USB0" | awk {'print $3}'`
if [ "$status" = "disabled" ]; then
echo "USB0" > /proc/acpi/wakeup
fi
# Enable wakeup for USB2
#status=`cat /proc/acpi/wakeup | grep "USB2" | awk {'print $3}'`
#if [ "$status" = "disabled" ]; then
#echo "USB2" > /proc/acpi/wakeup
#fi
# Enable wakeup for US12
#status=`cat /proc/acpi/wakeup | grep "US12" | awk {'print $3}'`
#if [ "$status" = "disabled" ]; then
#echo "US12" > /proc/acpi/wakeup
#fi
# Enable wakeup for US15
#status=`cat /proc/acpi/wakeup | grep "US15" | awk {'print $3}'`
#if [ "$status" = "disabled" ]; then
#echo "US15" > /proc/acpi/wakeup
#fi
exit 0
To test if you can wakeup from S3 (Standby) plug in your remote uncomment only the entry for USB0, reboot and then send the Zotac to Standby. If the Zotac is not waking up when you press a key on your remote, then comment out USB0 entries in /etc/rc.local and try it with the next entry.
I think one port must work !
For me it works for a Hauppauge MCE remote with (only) USB0 uncommented and with a X10 Remote (only) uncommented US15.
Hope that works for you !
spocky184
PS: That works only for waking the Zotac out of S3, not if the Zotac is completely powered down ! You can leave all settings in the BIOS as they are (Optimized Defaults) !!!


Search
Help