当前位置:首页 > linux > 正文内容

sudo apt-get update会失败,修改主机的dns的地址和更换源

root4年前 (2021-06-21)linux837


ping google.com 不同

看本机的DNS配置信息是在:/etc/resolv.conf

发现是保留ip

修改直接vim /etc/resolv.conf

写入:

nameserver 8.8.8.8


保存之后重启一下网络服务

sudo /etc/init.d/networking restart


接下来就是修改apt的源

vim /etc/apt/sources.list

将里面的内容替换为下面的:

deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse

deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse

deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse

deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse

deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse

deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse


保存


然后去执行

sudo apt-get update


扫描二维码推送至手机访问。

版权声明:本文由一叶知秋发布,如需转载请注明出处。

本文链接:https://zhiqiu.top/?id=133

分享给朋友:

相关文章

一行 Python 实现并行化 -- 日常多线程操作的新思路

一行 Python 实现并行化 -- 日常多线程操作的新思路

Python 在程序并行化方面多少有些声名狼藉。撇开技术上的问题,例如线程的实现和 GIL1,我觉得错误的教学指导才是主要问题。常见的经典 Python 多线程、多进程教程多显得偏“重”。而且往往隔靴搔痒,没有深入探讨日常工作中最有用的内容...

docker重新进入容器时source /etc/profile 中环境变量失效问题的解决

如果在docker中设置了环境变量,肯定希望下次进入容器时自动生效。如果是在:/etc/profile中设置的,再次进入容器时环境变量会失效,解决办法是将环境变量设置在:/root/.bashrc或者/etc/bashrc中设置推荐设置在/...

Jenkins在k8s 部署中,Nodeport服务类型非5000端口如何访问?

Jenkins在k8s 部署中,Nodeport服务类型非5000端口如何访问?

k8s部署Jenkins,server中有两个端口一个是http端口,一个是ssh 端口http端口就不说了,随便映射。在服务类型是NodePort下,对外映射端口如果非50000,slave连接出现异常首先在Jenkins的web界面设置...

centos yum 找不到包

yum -y install epel-release安装依赖源...

Python2 的Popen在docker中执行会挂起主进程

python2.7因业务需求。要把程序放入到docker容器中但是在docker执行的时候程序出现异常缓慢的情况检查函数执行情况发现当第一个线程执行到popen的时候会导致所有线程的挂起p1 = subprocess.P...

git 命令

修改文件:即添加内容到工作区vim  filepath清除工作区的内容,回溯到上次add的状态或者commit 的状态git checkout -- file添加文件到暂存区git add filepath暂存区文件重新回到工作区...