2019年8月8日 星期四

使用ethtool開啟/關閉 wol功能的指令

使用說明:
開啟Wake on lan ==> ethtool -s [Interface] wol g
關閉Wake on lan ==> ethtool -s [Interface] wol d

# ethtool -s eth0 wol g
# ethtool -s eth0 wol d

最後可以使用ethtool查看WOL是否有開啟


2019年8月2日 星期五

equal to linux "which" command in windows

在Windows環境下,可以使用"where" command,其功能等同於linux底下的which
例如: 我要查詢g++的路徑

C:\>where g++
C:\Dev-Cpp\bin\g++.exe