Acer Revo 3610 - Wake up from suspend
#1
Hi

I'm running 10.1 on my 3610 ans am wondering how to wake this up from suspend.

Also i have this remote, how do you put it in suspend from the remote?

http://www.ebay.co.uk/itm/Wireless-Windo...692wt_1270

Thanks
Reply
#2
Anyone know the answer please
Reply
#3
Depend on which USB port your remote receiver connect to add following line into /etc/rc.local

echo USB0 > /proc/acpi/wakeup

USB0 could be USB1, USB2, USB3, ... I don't know how to get which USB port your remote receiver connected to, so you need try out yourself.
Reply
#4
Thanks, where do you add it too?

Code:
#!/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.

exit 0
Reply
#5
add it between the " # By default...." and "exit 0" lines.

to figure out which usb device your IR Receiver is, you'll need to run the "lsusb" command from terminal. the command "cat /proc/acpi/wakeup" will show you the current status of all your usb devices.
Reply
#6
Code:
root@XBMCLive:/home/xbmc# lsusb
Bus 002 Device 002: ID 05a4:9881 Ortek Technology, Inc.
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
root@XBMCLive:/home/xbmc# cat /proc/acpi/wakeup
Device  S-state   Status   Sysfs node
SMB0      S4     disabled  pci:0000:00:03.2
USB0      S3     disabled  pci:0000:00:04.0
USB2      S3     disabled  pci:0000:00:04.1
NMAC      S5     disabled  pci:0000:00:0a.0
PBB0      S4     disabled  pci:0000:00:09.0
HDAC      S4     disabled  pci:0000:00:08.0
XVR0      S4     disabled  pci:0000:00:0c.0
XVR1      S4     disabled
P0P5      S4     disabled
P0P6      S4     disabled  pci:0000:00:15.0
P0P7      S4     disabled  pci:0000:00:16.0
P0P8      S4     disabled  pci:0000:00:17.0
P0P9      S4     disabled  pci:0000:00:18.0
root@XBMCLive:/home/xbmc#

Tried using this guide, but getting no where and this error


Code:
xbmc@XBMCLive:~$ echo "USB2" > /proc/acpi/wakeup
-bash: /proc/acpi/wakeup: Permission denied
Reply
#7
Anyone can help me with this please
Reply
#8
You need "sudo", only root can write to that file/device.
xbmc@XBMCLive:~$ sudo -s
root@XBMCLive:~# echo "USB2" > /proc/acpi/wakeup
Reply
#9
Do you mind to explain a little bit about output of lsusb? I tried to use lsusb to figure which USB device is which, but cannot connect them together.

rbrohman Wrote:add it between the " # By default...." and "exit 0" lines.

to figure out which usb device your IR Receiver is, you'll need to run the "lsusb" command from terminal. the command "cat /proc/acpi/wakeup" will show you the current status of all your usb devices.
Reply
#10
lsusb will give some confusing output since it will identify the manufacturer and not necessarily the name that's on the label on the box (I believe it does a lookup of the device code declared by the USB device and a list of known companies/devices - hence the recognition when you plug something in). Anyway, that means you'll frequently get some unidentifiable Chinese company, and it's thus a process of elimination which device to choose:

1. Can you recognise anything else as any of your other USB devices? It's not them, then! Anything obvious like "HCI device", "Mouse", "Keyboard", etc.

2. Can you unplug any other USB devices? If an entry disappears, it's not that either - ultimately, it must be whatever is left.

My logic - and I haven't tried this, so I could well be talking wombats - would be this:

I think the entry to the wakeup file is probably the first number associated with the relevant USB device. Taking the output above...

Code:
Bus 002 Device 002: ID 05a4:9881 Ortek Technology, Inc.
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

So Bus 2 (USB2) has two devices on it - the hub (how the computer sees it as a device, the USB 1.1 socket, effectively) and the IR receiver (the "Ortek" device) that's plugged into this. Either way, the computer would see the signal on that connection, so "002" is your answer - hence "USB2".

lsusb -v should tell you more about a specific device, although whether that "more" will be at all useful, I leave to your imagination...

Give it a try until someone can correct me, anyway :-)
Reply
#11
Thanks worked in root

You type the lsusb into the terminal and should come up with a few options

root@XBMCLive:/home/xbmc# lsusb
Bus 002 Device 002: ID 05a4:9881 Ortek Technology, Inc.
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Reply

Logout Mark Read Team Forum Stats Members Help
Acer Revo 3610 - Wake up from suspend0