执行更新数据(sudo apt-get update)提示:
Err http://mirrors.aliyun.com trusty Release.gpg
Could not resolve 'mirrors.aliyun.com'
Err http://mirrors.aliyun.com trusty-updates Release.gpg
Could not resolve 'mirrors.aliyun.com'
Err http://mirrors.aliyun.com trusty-backports Release.gpg
Could not resolve 'mirrors.aliyun.com'
Err http://mirrors.aliyun.com trusty-security Release.gpg
Could not resolve 'mirrors.aliyun.com'
Reading package lists... Done
W: Failed to fetch http://mirrors.aliyun.com/ubuntu/dists/trusty/InRelease
出现该错误的原因是我们没有编辑网络DNS配置文件,此时只要编辑网络DNS配置文件即可:
sudo gedit /etc/resolv.conf
我们在弹出的文本里最下面加入:
cat /etc/resolv.conf
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 8.8.8.8
nameserver 8.8.4.4
然后我们在重启网络:
sudo /etc/init.d/networking restart
再次执行更新操作:
sudo apt-get update
执行完成,然后:
sudo apt-get upgrade
至此,我终于成功了,终于可以随心所欲的执行sudo apt-get install net-tools 了,太不容易了,欢迎大家来和我交流!