树莓派更改镜像源

树莓派默认的镜像源是官方的,由于官方的镜像源在英国。所以有些时候apt-get安装系统时候,受到网速的影响,比较慢。
树莓派官方镜像源:

deb http://mirrordirector.raspbian.org/raspbian/ jessie main contrib non-free $
# Uncomment line below then 'apt-get update' to enable 'apt-get source'
#deb-src http://archive.raspbian.org/raspbian/ jessie main contrib non-free rpi

步骤一,备份原镜像源定义文件
sudo cp /etc/apt/sources.list /etc/apt/sources.list.old
步骤二,修改镜像源定义文件
sudo nano /etc/apt/sources.list
原文件内容:
deb http://mirrordirector.raspbian.org/raspbian/ Jessie main contrib non-free rpi
修改为:(注意地址最后是没有斜杠的)
deb http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian Jessie main contrib non-free rpi

中国经常用到的镜像源:


你可能感兴趣的:(树莓派)