美文网首页
raspberrypi更新加速-修改为国内源

raspberrypi更新加速-修改为国内源

作者: zhf_sy | 来源:发表于2020-08-11 11:33 被阅读0次

很多人修改树莓派系统软件仓库源时只修改了一处,在做更新是依然很慢,应该修改两处:

  1. sources.list
    我这里用的是阿里云的源
# cat /etc/apt/sources.list
#deb http://raspbian.raspberrypi.org/raspbian/ buster main contrib non-free rpi
# Uncomment line below then 'apt-get update' to enable 'apt-get source'
#deb-src http://raspbian.raspberrypi.org/raspbian/ buster main contrib non-free rpi
#阿里云
deb http://mirrors.aliyun.com/raspbian/raspbian/ buster main contrib non-free rpi
#deb-src http://mirrors.aliyun.com/raspbian/raspbian/ buster main contrib non-free rpi
  1. raspi.list
    我这里用的是科大的源
root@raspberrypi:~# cat /etc/apt/sources.list.d/raspi.list 
#deb http://archive.raspberrypi.org/debian/ buster main
# Uncomment line below then 'apt-get update' to enable 'apt-get source'
#deb-src http://archive.raspberrypi.org/debian/ buster main
# 科大
deb http://mirrors.ustc.edu.cn/archive.raspberrypi.org/debian/ buster main
  • 注意:国内有很多镜像加速源,自己百度一个靠谱的,很多,上面只是示例,请根据的os版本修改 'buster' 为自己的版本,查看树莓派os版本的方法:
# lsb_release -a
No LSB modules are available.
Distributor ID: Raspbian
Description:    Raspbian GNU/Linux 10 (buster)
Release:    10
Codename:   buster

如上,我的是 buster


相关文章

  • raspberrypi更新加速-修改为国内源

    很多人修改树莓派系统软件仓库源时只修改了一处,在做更新是依然很慢,应该修改两处: sources.list我这里用...

  • pip install 加速(修改为国内源)

    在国内,用 pip 安装 python 依赖包的时候,总是会遇到 Timeout 或者下载太慢的问题。 这是因为 ...

  • Ubuntu 源

    Ubuntu ARM更改为国内源

  • ubuntu基础配置(慢慢更新)

    壹.更换国内源: 安装Ubuntu后,使用国外源速度很慢,修改为国内源会快很多,修改阿里源为Ubuntu 18.0...

  • Ananconda更改为国内源

    conda安装好之后,默认的镜像是官方的。由于官网的镜像在境外,访问太慢或者不能访问,为了能够加快访问的速度,更改...

  • Ubuntu 更改为国内源

    此处都以阿里云的镜像为例子;Ubuntu分为ARM版本和x86版本 阿里云镜像网站:https://opsx.al...

  • conda更改为国内源

    终端中运行命令: (1)清华源(TUNA) conda config --add channels http://...

  • apt更改为国内源

    由于linux默认apt源为国外源,网速太慢,所以不建议使用默认apt源,建议使用过内源。 备份原文件:sudo ...

  • raspberrypi apt-get为国内源

    清华raspbian国内源 https://mirrors.tuna.tsinghua.edu.cn/help/r...

  • Jupyter Notebook

    pip3 指定国内源,临时加速安装-i https://mirrors.aliyun.com/pypi/simp...

网友评论

      本文标题:raspberrypi更新加速-修改为国内源

      本文链接:https://www.haomeiwen.com/subject/xfbedktx.html