最近新购入了一台国内的VPS,在更新Debian 8 Jessie系统时发觉速度非常缓慢,于是尝试着更换为国内的源,速度提升了许多,在这里与大家分享一下。
购买的VPS是黛米云的贵州VPS,具体可以参考《目前在用及用过的VPS/独服介绍》。
由于贵州的地理位置,电信机房的先天条件,以及VPS的价格限制,因此其中最为短板的应该就是国际带宽部分。尽管在国内有着很好的访问效果,但是在连接海外的Debian 8 Jessie更新源时,速度十分缓慢,Hostloc上也有许多人表示部署环境花了一整夜。
但是实际上,通过更换国内源,我在40分钟之内,完成了诸如apt-get update
以及部署LNMP环境的操作。
在进行接下来的操作之前,我建议各位可以先sudo apt-get install vim
,以替换vi
,毕竟vim
的操作更为简单便捷;其次,将/etc/apt/sources.list
进行备份:
mv /etc/apt/sources.list /etc/apt/sources.list.bak
更换源为网易163
网易163源一直是国内许多人选择的对象,不过不知为何,在我这里使用时产生了错误,大家如果也有问题,可以使用下文的中科大源。
以Jessie为例, 编辑/etc/apt/sources.list
文件, 在文件最前面添加以下条目(操作前请做好相应备份)
deb http://mirrors.163.com/debian/ jessie main non-free contrib
deb http://mirrors.163.com/debian/ jessie-updates main non-free contrib
deb http://mirrors.163.com/debian/ jessie-backports main non-free contrib
deb-src http://mirrors.163.com/debian/ jessie main non-free contrib
deb-src http://mirrors.163.com/debian/ jessie-updates main non-free contrib
deb-src http://mirrors.163.com/debian/ jessie-backports main non-free contrib
deb http://mirrors.163.com/debian-security/ jessie/updates main non-free contrib
deb-src http://mirrors.163.com/debian-security/ jessie/updates main non-free contrib
参考来源:http://mirrors.163.com/.help/debian.html
更换源为中科大
以Jessie为例, 编辑/etc/apt/sources.list
文件, 在文件最前面添加以下条目(操作前请做好相应备份)
deb http://mirrors.ustc.edu.cn/debian stable main contrib non-free
deb-src http://mirrors.ustc.edu.cn/debian stable main contrib non-free
deb http://mirrors.ustc.edu.cn/debian stable-proposed-updates main contrib non-free
deb-src http://mirrors.ustc.edu.cn/debian stable-proposed-updates main contrib non-free
或者直接
sudo sed -i 's/httpredir.debian.org/mirrors.ustc.edu.cn/g' /etc/apt/sources.list
参考来源:https://lug.ustc.edu.cn/wiki/mirrors/help/debian
更换完成后,我们执行sudo apt-get update && apt-get upgrade
,至此就完成了整个源的更换。
One comment
对于国内服务器比较适用,但如果使用国内知名厂商服务器的话不会出现缓慢。各家厂商都设置了自家的源。