-
Disable and stop the systemd-resolved service:
sudo systemctl disable systemd-resolved.service sudo systemctl stop systemd-resolved
-
Then put the following line in the
[main]
section of your/etc/NetworkManager/NetworkManager.conf
:
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
diskutil list | |
hdiutil convert -format UDRW -o image image.iso | |
diskutil unmountDisk /dev/disk2 | |
sudo dd if=image.dmg of=/dev/disk2 | |
diskutil unmountDisk /dev/disk2 |
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
use Net::MAC::Vendor; | |
use strict; | |
open(ARP, "arp -n|") || die "Failed $!\n"; | |
my @arp_table; | |
while (<ARP>) { | |
if ($_ =~ m/incomplet/) {next;} | |
if ($_ =~ m/Address/) {next;} | |
my @line = split(' ',$_); |