Dear visitor, welcome to Dreamboard. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
|
|
Source code |
1 |
/bin/busybox ether-wake -i eth0 "xx:xx:xx:xx:xx:xx" |
This post has been edited 2 times, last edit by "tomde" (Jan 31st 2010, 8:48am)
noch python wakeonlan.py funktionieren:
Quoted
./etherwake: 1: Syntax error: "(" unexpected
|
|
Source code |
1 2 3 4 5 |
from socket import *
UDPSock = socket(AF_INET,SOCK_DGRAM)
UDPSock.setsockopt(SOL_SOCKET,SO_BROADCAST,1)
print "\nSendig WOL:"
UDPSock.sendto('\xff'*6+'\x00\xyy\xyy\xyy\xyy\xyy'*16, ("255.255.255.255",9))
|
Quoted
File "wakeonlan.py", line 1 from socket import *
muss mal schauen. das problem ist, dass du fürs runterfahren entweder per ssh ne verbindung aufbauen musst oder du musst auf dem rechner ein programm installieren, dass das herunterfahren auslöst.
This post has been edited 1 times, last edit by "tomde" (Mar 1st 2011, 11:32am)
This post has been edited 2 times, last edit by "tomde" (Jul 10th 2011, 10:01am)