解决ubuntu 安装软件时下载慢的问题
虚拟机下装了ubuntu16.04,安装软件 apt-get install ***的时候网速特别慢,只有几K,但是打开网页的速度感觉还可以,上网查了一下,发现应该是源的问题。系统默认用的是国外的源,相当于从国外网站下载,所以速度慢了。更新了国内163源(其他的源也可以,比如阿里的),速度立马快了。方法:备份并替换 /etc/apt/sources.list 文件,手动修改也可以。参考
·
虚拟机下装了ubuntu16.04,安装软件 apt-get install ***的时候网速特别慢,只有几K,但是打开网页的速度感觉还可以,上网查了一下,发现应该是源的问题。
系统默认用的是国外的源,相当于从国外网站下载,所以速度慢了。更新了国内163源(其他的源也可以,比如阿里的),速度立马快了。
方法:备份并替换 /etc/apt/sources.list 文件,手动修改也可以。
参考: http://mirrors.163.com/.help/ubuntu.html
这个网页并没有给出16.04的具体修改内容,但是网易已经更新了16.04的源了。只需要把 wily改成xeninal即可:
deb http://mirrors.163.com/ubuntu/ xeninal main restricted universe multiverse deb http://mirrors.163.com/ubuntu/ xeninal-security main restricted universe multiverse deb http://mirrors.163.com/ubuntu/ xeninal-updates main restricted universe multiverse deb http://mirrors.163.com/ubuntu/ xeninal-proposed main restricted universe multiverse deb http://mirrors.163.com/ubuntu/ xeninal-backports main restricted universe multiverse deb-src http://mirrors.163.com/ubuntu/ xeninal main restricted universe multiverse deb-src http://mirrors.163.com/ubuntu/ xeninal-security main restricted universe multiverse deb-src http://mirrors.163.com/ubuntu/ xeninal-updates main restricted universe multiverse deb-src http://mirrors.163.com/ubuntu/ xeninal-proposed main restricted universe multiverse deb-src http://mirrors.163.com/ubuntu/ xeninal-backports main restricted universe multiverse如果是其他版本ubuntu,按照
lucid(10.04)
precise(12.04)
trusty(14.04)
utopic(14.10)
vivid(15.04)
wily(15.10)
做相应修改就行了。
PS:别忘了修改之后执行 sudo apt-get update
后来执行 sudo apt-get install libopencv-dev 时出错,
E: Unable to correct problems, you have held broken packages.
执行sudo apt-get update更新后,重新运行后就正常了。
更多推荐
已为社区贡献1条内容
所有评论(0)