Ubuntu 18.04にはsystemd-resolveが付属しており、Dnsmasqポートと競合するポート53 にバインドするため、無効にする必要があり ます。
次のコマンドを実行して、解決されたサービスを無効にします。
sudo systemctl disable systemd-resolve
sudo systemctl stop systemd-resolved
また、シンボリックリンクされたresolv.confファイルを削除します
ls -lh /etc/resolv.conf
sudo rm /etc/resolv.conf
次に、新しいresolv.conf ファイルを作成します
echo “nameserver 8.8.8.8” > /etc/resolv.conf
コメント