![]() |
2008-01-11
, 23:08
|
|
Posts: 531 |
Thanked: 79 times |
Joined on Oct 2006
@ This side of insane, that side of genius
|
#2
|
The Following User Says Thank You to brendan For This Useful Post: | ||
![]() |
2008-01-14
, 19:17
|
Posts: 6 |
Thanked: 0 times |
Joined on Dec 2007
|
#3
|
![]() |
2008-01-15
, 03:29
|
Posts: 1 |
Thanked: 0 times |
Joined on Jan 2008
|
#4
|
![]() |
2008-10-11
, 11:01
|
|
Posts: 129 |
Thanked: 81 times |
Joined on Dec 2007
@ Austin, TX
|
#5
|
copy that text from your link into a file and call it /home/user/wol.py.
get the mac address for the machine you want to send the WOL request to and change the last line of the file to match...
WakeOnLan('0:3:93:81:68:b2')
whats in between the single quotes should be the mac of your machine.
when you have that done, execute the following line...
chmod 700 /home/user/wol.py
you may need to run this as root so you may need to have becomeroot installed. if the script errors out, you may need to execute the following line in conjunction with the chmod line above...
chown root:root /home/user/wol.py
EDIT: make sure this is the first line in the file...
#! /usr/bin/python
![]() |
2008-10-11
, 11:17
|
Posts: 251 |
Thanked: 22 times |
Joined on Dec 2007
@ Houston, Texas
|
#6
|
![]() |
2008-10-12
, 15:48
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#7
|
![]() |
2008-10-12
, 17:00
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#8
|
Reviving an old thread here:
Is it possible to do this if both computers are not on the same network (e.g. N810 using phone connection accessing remote computer on home network)?
![]() |
2009-06-01
, 19:47
|
Posts: 32 |
Thanked: 6 times |
Joined on Nov 2007
@ Derby, UK
|
#9
|
I've been dabbling in router firmwares so have a few of wol programs compiled for diablo:
http://qwerty12.maemobox.org/wol/
![]() |
2009-06-01
, 19:55
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#10
|
The Following User Says Thank You to qwerty12 For This Useful Post: | ||
I wanted to know if there are any programs that allow me to turn on my PC remotely through my n810? The PCs I want to turn on have been configured for WOL (wake on LAN) but am not sure how I would do it from my n810.
The idea would be for me to sit on my couch and turn on my PC connected to my HDTV, like a remote. A magic packet would get sent to the NIC and my PC powers on. I could buy a SoundGraph iMON Inside to power it on remotely but I think WOL can be used on many more PCs. I found a WOL Python script but am not familiar with Python and how to implement this. Thanks for your help.