Using Ubuntu as a workstation
Enabling system wake-up from USB device
Run the following to get a list of your USB devices:
The output should look like:
In the above output, the hex numbers represent the vendor ID followed by the product ID, eg. 05e3
is the vendor ID (idVendor
) for Genesys Logic and 0626
is the product ID (idProduct
).
The files that store configurations for the above can be found at /sys/bus/usb/devices
. To identify which directory in there contains the desired USB device (you will need to run these as root
):
The output should look like (intentionally matched with the lsusb
output):
Match the above output from lsusb
with the most recent output and note the left value (eg. 4-1
refers to the Genesys Logic device)
Run the following to enable wake-up from the USB device:
To enable persistence, put the above script in your /etc/rc.local
as well.
Last updated