In order to enable WOL, wake on LAN, sometimes you have to set the interface to listen to magic packets. Assuming dbus named your interface enp6s0, use the following command to enable WOL
|
1 |
nmcli c modify enp6s0 802-3-ethernet.wake-on-lan magic |
Webentwicklung und sonstiger Unsinn :) Web development and other nonsense :)
In order to enable WOL, wake on LAN, sometimes you have to set the interface to listen to magic packets. Assuming dbus named your interface enp6s0, use the following command to enable WOL
|
1 |
nmcli c modify enp6s0 802-3-ethernet.wake-on-lan magic |
Wie ich sehe hat mir Amazon die Partnerschaft gekündigt, als ich gerade ein Produkt bewerben wollte musste ich von Neuem die Partnerschaft beantragen. Letztens hatte ich mich mit DSL Vergleich bei der Deutschen Telekom und O2 beworben, beide lehnten ab. Travian (ein Reisepartnernetzwerk) wird von Travellan absorbiert, 2 hatte ich der Übernahme meiner Daten zugestimmt,…
Read ArticleRecently I’m receiving “delivery report” spam coming from instances hosted on AWS compute nodes. At least the headers says so.
Read ArticleToday I tried to log into Amazon on login I was sent a code to my email address. Now I tried logging into Twitch, I should enter the code that was sent to my email address. I closed the tab and am writing this blog post, because I won’t use Twitch today since they make…
Read ArticleIf you would like to delete all node_modules and bower_components in all directories relative to the current, use the following commands:
|
1 2 |
find . -name "node_modules" -type d -prune -exec rm -rf '{}' + find . -name "bower_components" -type d -prune -exec rm -rf '{}' + |