Ubuntu 更新过程中出现Could not resolve 'mirrors.aliyun.com'
标签: ubuntu
正在查看 2 条回复
- 作者帖子
- Up::0
上面直接修改该 /etc/resolved.conf 方法适合老版本的ubuntu,重新启动系统后会失效。新版本20.04以上的dns修改方法如下:
1.修改 /etc/systemd/resolved.conf 文件,在其中添加dns信息,例如:DNS= 8.8.8.8 114.114.114.114
# See resolved.conf(5) for details [Resolve] DNS= 8.8.8.8 114.114.114.114 #FallbackDNS= #Domains= #LLMNR=no #MulticastDNS=no #DNSSEC=no #DNSOverTLS=no #Cache=no-negative #DNSStubListener=yes #ReadEtcHosts=yes
保存后退出
2. 以root身份运行命令
systemctl restart systemd-resolved systemctl enable systemd-resolved mv /etc/resolv.conf /etc/resolv.conf.bak ln -s /run/systemd/resolve/resolv.conf /etc/
再查看/etc/resolv.conf文件就可以看到新的dns信息已经写入其中了
- Up::0
另外一种修改方式是直接配置网卡的参数
# sudo vim /etc/netplan/00-installer-config.yaml
修改下面内容,注意排版缩进
# This is the network config written by 'subiquity' network: ethernets: eno1: dhcp4: false gateway4: 192.168.10.1 addresses: [192.168.10.2/24] nameservers: addresses: [119.29.29.29] eno2: dhcp4: true version: 2
- 作者帖子
正在查看 2 条回复
- 哎呀,回复话题必需登录。