Skip to content

Instantly share code, notes, and snippets.

@pnsinha
Created November 12, 2022 06:07
Show Gist options
  • Select an option

  • Save pnsinha/353c0670fdc8c7e8e69f6932a3cc5de9 to your computer and use it in GitHub Desktop.

Select an option

Save pnsinha/353c0670fdc8c7e8e69f6932a3cc5de9 to your computer and use it in GitHub Desktop.
cd /etc/resolvconf/resolv.conf.d
sudo cp -p head head.orig #backup copy, always do this
#sudo nano head
#nameserver <ip_of_nameserver>
echo "nameserver 8.8.8.8" | sudo tee -a head
#regenerate resolvconf
sudo resolvconf -u
sudo systemd-resolve --interface eth0 --set-dns 8.8.8.8 --set-domain storage.local
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment