Outils du site

Face à un environnement aussi mouvant, l'expression peut vraisemblablement s'harmoniser avec les besoins participatifs du schéma directeur. [http://www.bellamyjc.org/fr/logomachie.html]

04-linux:10-administration:wakeonlan

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
04-linux:10-administration:wakeonlan [2021/01/15 19:29] Roge04-linux:10-administration:wakeonlan [2021/01/16 13:20] (Version actuelle) – [Réveil] Roge
Ligne 7: Ligne 7:
   *   sudo apt install etherwake -y   *   sudo apt install etherwake -y
   *   sudo apt install wakeonlan -y   *   sudo apt install wakeonlan -y
 +
 +===== Configuration =====
 +
 +https://www.techrepublic.com/article/how-to-enable-wake-on-lan-in-ubuntu-server-18-04/
 +
 +
 +  * pi a # pour voir l'INTERFAC réseau cible
 +  * sudo ethtool -s <INTERFACE> wol g
 +
 +
 +  * sudo vi /etc/systemd/system/wol.service
 +
 +
 +In that file, paste the following:
 +
 +<code bash>
 +[Unit]
 +Description=Configure Wake On LAN
 +
 +[Service]
 +Type=oneshot
 +ExecStart=/sbin/ethtool -s INTERFACE wol g
 +
 +[Install]
 +WantedBy=basic.target
 +</code>
 +
 +
 +Save and close the file. Make systemd aware of the new script with the command:
 +  * sudo systemctl daemon-reload
 +
 +Enable the new service with the command: 
 +  * sudo systemctl enable wol.service
 +
 +Finally, start the service with the command:
 +  * sudo systemctl start wol.service
 +
 +===== Réveil =====
 +
 +  * wakeonlan <@MAC>
Dernière modification : 2021/01/15 19:29