Skip to content

Instantly share code, notes, and snippets.

@genzj
Created August 30, 2024 17:10
Show Gist options
  • Save genzj/f1825a7e2c54c2c6e46095f95c697285 to your computer and use it in GitHub Desktop.
Save genzj/f1825a7e2c54c2c6e46095f95c697285 to your computer and use it in GitHub Desktop.
Disable Ubuntu Connectivity Checking
#!/bin/bash
# ref:
# https://askubuntu.com/a/1167767
# https://manpages.ubuntu.com/manpages/bionic/man5/NetworkManager.conf.5.html#connectivity%20section
sudo cp --backup=t /etc/NetworkManager/NetworkManager.conf /etc/NetworkManager/NetworkManager.conf.backup
echo -e "\n[connectivity]\nuri=\n" | sudo tee -a /etc/NetworkManager/NetworkManager.conf
sudo systemctl restart NetworkManager.service
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment