加载中

Linux换源

Linux换源

总要热爱点什么,不能被这无聊的生活吞没

一、一键更换国内源


bash <(curl -sSL https://linuxmirrors.cn/main.sh)

二、armbian:


vim /etc/apt/sources.list
清华

deb https://mirrors.tuna.tsinghua.edu.cn/armbian buster main utils

deb-src https://mirrors.tuna.tsinghua.edu.cn/armbian buster main utils

  

deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main non-free contrib

deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main non-free contrib

deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main non-free contrib

deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main non-free contrib

deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main non-free contrib

deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main non-free contrib

  

deb http://security.debian.org/ buster/updates main

deb-src http://security.debian.org/ buster/updates main

  
阿里

deb http://mirrors.aliyun.com/debian/ bullseye main contrib non-free

#deb-src http://mirrors.aliyun.com/debian/ bullseye main contrib non-free

  

deb http://mirrors.aliyun.com/debian/ bullseye-updates main contrib non-free

#deb-src http://mirrors.aliyun.com/debian/ bullseye-updates main contrib non-free

  

deb http://mirrors.aliyun.com/debian/ bullseye-backports main contrib non-free

#deb-src http://mirrors.aliyun.com/debian/ bullseye-backports main contrib non-free

  

deb http://mirrors.aliyun.com/debian-security/ bullseye-security main contrib non-free

#deb-src http://mirrors.aliyun.com/debian-security/ bullseye-security main contrib non-free

  
  

三、ubuntu:


vim /etc/apt/sources.list

########   Ubuntu22.04LTS 清华镜像源   ###############

# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释

deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy main restricted universe multiverse

# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy main restricted universe multiverse

deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse

# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse

deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse

# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse

deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-security main restricted universe multiverse

# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-security main restricted universe multiverse

# 预发布软件源,不建议启用

# deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse

# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse

########   Ubuntu22.04 阿里云镜像源   ###############

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

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

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

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

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

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

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

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

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

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

########   Ubuntu22.04 中科大镜像源   ###############

deb https://mirrors.ustc.edu.cn/ubuntu/ jammy main restricted universe multiverse

deb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy main restricted universe multiverse

deb https://mirrors.ustc.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse

deb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse

deb https://mirrors.ustc.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse

deb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse

deb https://mirrors.ustc.edu.cn/ubuntu/ jammy-security main restricted universe multiverse

deb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy-security main restricted universe multiverse

deb https://mirrors.ustc.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse

deb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse

########   Ubuntu22.04 网易163镜像源   ###############

deb http://mirrors.163.com/ubuntu/ jammy main restricted universe multiverse

deb http://mirrors.163.com/ubuntu/ jammy-security main restricted universe multiverse

deb http://mirrors.163.com/ubuntu/ jammy-updates main restricted universe multiverse

deb http://mirrors.163.com/ubuntu/ jammy-proposed main restricted universe multiverse

deb http://mirrors.163.com/ubuntu/ jammy-backports main restricted universe multiverse

deb-src http://mirrors.163.com/ubuntu/ jammy main restricted universe multiverse

deb-src http://mirrors.163.com/ubuntu/ jammy-security main restricted universe multiverse

deb-src http://mirrors.163.com/ubuntu/ jammy-updates main restricted universe multiverse

deb-src http://mirrors.163.com/ubuntu/ jammy-proposed main restricted universe multiverse

deb-src http://mirrors.163.com/ubuntu/ jammy-backports main restricted universe multiverse

sudo apt update

sudo apt upgrade

留言