Archive:HOW-TO:Enable Wake-On-Device for Ubuntu: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
>Outleradam
No edit summary
(because some people don't understand what "outdated" means)
 
(42 intermediate revisions by 5 users not shown)
Line 1: Line 1:
This Article discusses enabling wake-up from your remote device.
{{outdated}}
 
 
 
== Identification of resume devices ==
* From your terminal type the following to gain a list of all authorized resume devices
cat /proc/acpi/wakeup
EG.
root@XBMCLive:~# cat /proc/acpi/wakeup
Device  S-state  Status  Sysfs node
HUB0      S5    disabled  pci:0000:00:04.0
XVR0      S5    disabled  pci:0000:00:09.0
XVR1      S5    disabled  pci:0000:00:0b.0
XVR2      S5    disabled  pci:0000:00:0c.0
PS2M      S4    disabled  pnp:00:08
PS2K      S4    disabled  pnp:00:09
USB0      S3    disabled  pci:0000:00:02.0
USB2      S3    disabled  pci:0000:00:02.1
AZAD      S5    disabled  pci:0000:00:05.0
MMAC      S5    disabled  pci:0000:00:07.0
 
== Enabling wakeup status for devices ==
* enable wakeup devices to resume the computer by typing the following where **** is replaced with the corresponding device
echo **** > /proc/acpi/wakeup
 
EG.
root@XBMCLive:~# echo USB0 > /proc/acpi/wakeup
root@XBMCLive:~# echo USB2 > /proc/acpi/wakeup
 
* Type the following to verify proper wakeup device status
cat /proc/acpi/wakeup
 
== Verification of wakeup status ==
EG.
root@XBMCLive:~# cat /proc/acpi/wakeup
Device  S-state  Status  Sysfs node
HUB0      S5    disabled  pci:0000:00:04.0
XVR0      S5    disabled  pci:0000:00:09.0
XVR1      S5    disabled  pci:0000:00:0b.0
XVR2      S5    disabled  pci:0000:00:0c.0
PS2M      S4    disabled  pnp:00:08
PS2K      S4    disabled  pnp:00:09
USB0      S3    enabled  pci:0000:00:02.0
USB2      S3    enabled  pci:0000:00:02.1
AZAD      S5    disabled  pci:0000:00:05.0
MMAC      S5    disabled  pci:0000:00:07.0
 
You should now see that your devices are enabled.  Test your resume function at this time and verify proper operation.

Latest revision as of 07:02, 4 April 2015

Time.png THIS PAGE IS OUTDATED:

This page or section has not been updated in a long time, no longer applies, refers to features that have been replaced/removed, and/or may not be reliable.

This page is only kept for historical reasons, or in case someone wants to try updating it.