Skip to content

Instantly share code, notes, and snippets.

@bergercookie
Forked from zoilomora/README.md
Created February 21, 2022 18:57
Show Gist options
  • Save bergercookie/b51d3fcce5c4a790cd510b04f68a10ee to your computer and use it in GitHub Desktop.
Save bergercookie/b51d3fcce5c4a790cd510b04f68a10ee to your computer and use it in GitHub Desktop.
How to disable systemd-resolved in Ubuntu

How to disable systemd-resolved in Ubuntu

Stages

  • 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:

      dns=default
    
  • Delete the symlink /etc/resolv.conf

      rm /etc/resolv.conf
    
  • Restart network-manager

      sudo service network-manager restart
    

Sources

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment