This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# https://wiki.archlinux.org/index.php/Wake-on-LAN | |
sudo pacman -Syu ethtool | |
# d (disabled), p (PHY activity), u (unicast activity), m (multicast activity), | |
# b (broadcast activity), a (ARP activity), and g (magic packet activity) | |
ethtool <interface> | grep Wake-on | |
# If not g | |
ethtool -s <interface> wol g |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Config for GNU GRand Unified Bootloader (GRUB) | |
# /boot/grub/grub.cfg | |
# This grub.cfg file was created by Lance http://www.pendrivelinux.com | |
# Suggested Entries and the suggestor, if available, will also be noted. | |
# Sources: | |
# http://www.pendrivelinux.com/boot-multiple-iso-from-usb-via-grub2-using-linux/#more-5352 | |
# https://gist.github.com/jamiekurtz/26c46b3e594f8cdd453a | |
# https://gist.github.com/noisufnoc/e0053d738f5fbb679535 |
OlderNewer