标签:
启动者(A) 被远程开启者(B)
一、被远程开启的电脑(电脑B):
1. 重新开机,并进到BIOS设定
2. 把Wake On Land / Wake On PCI(E)设为Enable
3. 储存并进入Ubuntu画面
4. $sudo apt-get install ethtool
5. $sudo ethtool -s eth0 wol g (eth? ?依该电脑网卡编号而定,可用ifconfig确认)
6. $sudo vim /etc/rc.local
exit 0前添加:
sleep 5
ethtool -s eth0 wol g
7. $sudo vim /etc/init.d/halt
NETDOWN = no
8. 查询电脑网卡号码(MAC)
$ifconfig
HWaddr 之后显示的就是网卡号码
二、启动者(电脑A):
1. $sudo apt-get install wakeonlan
2. $wakeonlan 电脑B的网卡号码,例如:
wakeonlan 00:11:22:33:44:55:66
引用:
[1] http://www.linuxidc.com/Linux/2012-07/64696.html
标签:
原文地址:http://www.cnblogs.com/wubdut/p/4684429.html