Awesome
<div align="center">Thanks Mirror
<p> 整理记录各个包管理器,系统镜像,以及常用软件的好用镜像 </p> <img src="https://cdn.jsdelivr.net/gh/eryajf/tu@main/img/image_20240420_214408.gif" width="800" height="3"> </div><br>本项目灵感来自:package-manager-proxy-settings,该项目分享的是包管理器配置代理的方法,这里分享的是包管理器直接可用,质量好,速度快的镜像,以及一些其他常用软件,系统镜像的国内镜像。
在此,对那些提供公共仓库镜像的企业或组织,致以感谢 🫡!
Gitee:https://gitee.com/eryajf/Thanks-Mirror
GitHub:https://github.com/eryajf/Thanks-Mirror
每天自动运行一次链接检查,以保证项目中提供的链接都还正常可用,检查详情查看。
📢 注意:之前有朋友在issue中提过是否可以做一个工具来管理这些源,现在,有一个很不错的,适用于多平台的换源工具:https://github.com/RubyMetric/chsrc
🥳 欢迎关注我的其他项目:
- Go-Ldap-Admin:🌉 基于 Go+Vue 实现的 openLDAP 后台管理项目。
- learning-weekly:📝 周刊内容以运维技术和 Go 语言周边为主,辅以 GitHub 上优秀项目或他人优秀经验。
- HowToStartOpenSource:🌈 GitHub 开源项目维护协同指南。
- magic-of-sysuse-scripts:🪄 运维外挂小工具。
- care-screenshot:给我一个 URL,我能将你关心的元素截图发给机器人 🤖
- read-list:📖 优质内容订阅,阅读方为根本
- awesome-github-profile-readme-chinese:🦩 优秀的中文区个人主页搜集
赞助商
<!-- START doctoc generated TOC please keep comment here to allow auto update --> <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->302.AI 是一个汇集全球顶级品牌的 AI 超市,按需付费,零月费,零门槛使用各种类型 AI。
- 点击注册: 立即获得 1PTC(1PTC=1 美金,约为 7 人民币)代币。
- 功能全面: 将最好用的 AI 集成到在平台之上,包括不限于 AI 聊天,图片生成,图片处理,视频生成,全方位覆盖。
- 简单易用: 提供机器人,工具和 API 多种使用方法,可以满足从小白到开发者多种角色的需求。
- 按需付费,零门槛: 不提供月付套餐,对产品不设任何门槛,按需付费,全部开放。充值余额永久有效。
- 管理者和使用者分离:管理者一键分享,使用者无需登录。使用者无需关心复杂的 AI 设置,让懂 AI 的人来配置,简化使用流程。
目录
- Package-Mirror
- Software-Mirror
- JDK
- Docker
- Kubernetes
- K3s
- Minikube
- Helm
- Harbor
- Jenkins
- GitLab-ce
- GitLab-runner
- ElasticSearch
- Logstash
- Kibana
- Filebeat
- MySQL
- MariaDB
- Percona
- MongoDB
- Redis
- PostgreSQL
- Golang
- Node
- Yarn
- Python
- Rust
- Maven
- Zabbix
- Prometheus
- Grafana
- Pinpoint
- Apache
- Nginx
- OpenResty
- Keepalived
- Ceph
- Influxdata
- ClickHouse
- Rabbitmq
- ETCD
- WireShark
- Virtualbox
- iina
- chromium
- System-Mirror
- Other-Mirror
- 如何贡献
- 贡献者
Package-Mirror
以往工作中经历过建设企业内部私服的经历,私服的建设离不开国内一些优秀的镜像代理,这里记录下来,以供大家参考。
注意:
假如所有的镜像都已经被本地 nexus 私服代理,那么对应的地址为nexus.eryajf.net/repository/***/
。(这只是个域名示例,不代表实际可用!)
Go
Configuration
如果 go 版本用的go1.11
或者go1.12
,需进行如下配置:
export GO111MODULE=on
export GOPROXY="http://nexus.eryajf.net/repository/go/"
如果使用 go1.13
以上的版本则可以用如下配置:
export GOPROXY="http://nexus.eryajf.net/repository/go/"
GONOPROXY="gitlab.eryajf.net"
GONOSUMDB="gitlab.eryajf.net"
GOPRIVATE="gitlab.eryajf.net"
GOSUMDB="sum.golang.google.cn"
关于如上两个版本配置差异,以及配置参数详解可参考:https://wiki.eryajf.net/pages/4941.html
Mirrors
- Aliyun
- Proxy-cn
- Proxy-io
- Baidu
- Tencent
- HUAWEI
其中GOSUMDB
在国内可用的两个镜像分别如下:
🔝回到顶部
Npm
Configuration
配置npm
代理,需进行如下配置:
# npm配置
$ echo 'registry=http://nexus.eryajf.net/repository/npm' > ~/.npmrc
# 查看
$ npm config get registry
http://nexus.eryajf.net/repository/npm
# yarn配置
$ echo 'registry "http://nexus.eryajf.net/repository/npm"' > ~/.yarnrc
# 查看
$ yarn config get registry
http://nexus.eryajf.net/repository/npm
Mirrors
- Taobao
- HUAWEI
- Tencent
- npmjs
🔝回到顶部
Pip
Configuration
配置Python
代理,需进行如下配置:
$ mkdir ~/.pip
$ cat > ~/.pip/pip.conf << EOF
[global]
timeout = 60
trusted-host = nexus.eryajf.net
index-url = http://nexus.eryajf.net/repository/pypi/simple
EOF
注意:
通常在配置文件后边,我们会添加一个simple
。
# 简洁配置方式 1
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
# 简洁配置方式 2
pip3 install --upgrade -i https://pypi.tuna.tsinghua.edu.cn/simple yt-dlp
Mirrors
目前代理外部私仓有:
- Aliyun
- 清华
- HUAWEI
- Tencent
- 火山引擎
- 北大
- 南阳理工
- 大连东软
- 上海交通大学
🔝回到顶部
Composer
Composer 是 PHP 的一个依赖管理工具,需要 PHP 5.3.2 以上才能运行。
Configuration
配置PHP
代理,需进行如下配置:
- 全局配置(推荐)
- 所有项目都会使用该镜像地址:
composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/
- 取消配置:
composer config -g --unset repos.packagist
- 所有项目都会使用该镜像地址:
- 项目配置
- 仅修改当前工程配置,仅当前工程可使用该镜像地址:
composer config repo.packagist composer https://mirrors.aliyun.com/composer/
- 取消配置:
composer config --unset repos.packagist
- 仅修改当前工程配置,仅当前工程可使用该镜像地址:
参考:https://developer.aliyun.com/composer
Mirrors
目前代理外部私仓有:
🔝回到顶部
Rubygems
RubyGems 是 Ruby 的一个包管理器,它提供一个分发 Ruby 程序和库的标准格式,还提供一个管理程序包安装的工具。
Configuration
配置Ruby
代理,需进行如下配置:
# 首先,查看当前源:
$ gem sources -l
*** CURRENT SOURCES ***
https://rubygems.org/
# 接着,移除 https://rubygems.org/ ,并添加国内下载源 https://gems.ruby-china.com/ 。
$ gem sources --remove https://rubygems.org/
$ gem sources -a https://gems.ruby-china.com/
$ gem sources -l
*** CURRENT SOURCES ***
https://gems.ruby-china.com/
# 请确保只有 gems.ruby-china.com
$ gem install rails
参考:https://www.runoob.com/ruby/ruby-rubygems.html
Mirrors
目前代理外部私仓有:
- Aliyun
- Tencent
- HUAWEI
- 清华
- 中科大
- 北京外国语大学
- 南京大学
🔝回到顶部
Maven
Configuration
Java 系的工具版本规范如下:
JDK:
1.8.0_292MVN:
3.3.9
配置 Maven 代理,参考配置文件: settings.xml
Mirrors
- HUAWEI
- Maven Central Repository
- Aliyun
- Tencent
- Apache Maven
- confluent
- jboss
- Lss233's.Mirror(供 Minecraft 开发使用)
🔝回到顶部
Yum
Configuration
如果CentOS
服务器要接入私服yum
源,则清空本地 /etc/yum.repos.d
的内容,添加如下内容:
$ cat >> /etc/yum.repos.d/nexus.repo << 'EOF'
[nexus]
name=Nexus Repository
baseurl=http://nexus.eryajf.net/repository/yum/$releasever/os/$basearch/
enabled=1
gpgcheck=0
[nexus-local]
name=Nexus Repository
baseurl=http://nexus.eryajf.net/repository/eryajf-yum-local/
enabled=1
gpgcheck=0
EOF
然后执行如下命令:
yum clean all
yum makecache
Mirrors
目前代理外部源:
- Aliyun
- HUAWEI
- Tencent
- 兰州大学
- 清华
- 华中科技大学
- 浙江大学
- souhu
- 163:
🔝回到顶部
Remi
Remi repository 是包含最新版本 PHP 和 MySQL 包的 Linux 源,由 Remi 提供维护。
官方地址:https://rpms.remirepo.net/
Configuration
详情参考:https://wiki.eryajf.net/pages/f35986
yum install -y epel-release
yum install -y https://mirrors.tuna.tsinghua.edu.cn/remi/enterprise/remi-release-7.rpm
Mirrors
目前代理外部源:
- Aliyun
- HUAWEI
- 火山引擎
- 清华
- 中科大
- 上海交通
- 首都在线
- 北京外国语大学
- 南京大学
🔝回到顶部
Epel
EPEL 的全称叫 Extra Packages for Enterprise Linux。EPEL 是由 Fedora 社区打造,为 RHEL 及衍生发行版如 CentOS、Scientific Linux 等提供高质量软件包的项目。
官方地址:https://docs.fedoraproject.org/en-US/epel/
Configuration
# 备份
mv /etc/yum.repos.d/epel.repo /etc/yum.repos.d/epel.repo.backup
mv /etc/yum.repos.d/epel-testing.repo /etc/yum.repos.d/epel-testing.repo.backup
# 下载
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
Mirrors
目前代理外部源:
- Aliyun
- Tencent
- HUAWEI
- 火山引擎
- 清华
- 中科大
- 浙江大学
- 兰州大学
- 上海交通
- 首都在线
- 大连东软
- 重庆大学
- 北京外国语大学
- 公云
🔝回到顶部
Homebrew
Configuration
如果你使用了 zsh,那么配置方式如下:
echo 'export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git"' >> ~/.zshrc
echo 'export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git"' >> ~/.zshrc
echo 'export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles"' >> ~/.zshrc
source ~/.zshrc
brew update
Mirrors
- Aliyun
- Tencent
- 清华:
- 重庆大学
- 北京外国语大学
🔝回到顶部
cargo
rust 包管理镜像源
Configuration
修改文件~/.cargo/config
(没有则新建)
[source.crates-io]
replace-with = 'rsproxy'
[source.rsproxy]
registry = "https://rsproxy.cn/crates.io-index"
[registries.rsproxy]
index = "https://rsproxy.cn/crates.io-index"
[net]
git-fetch-with-cli = true
Mirrors
- 字节
- 中国科学技术大学
- 清华:
- 上海交通大学
- 北京外国语大学
🔝回到顶部
Software-Mirror
还有一些软件,直接通过官方下载比较困难,也整理出方便下载的国内优质镜像。
JDK
Official
Mirrors
- HUAWEI
- 清华
- 编程宝库
- injdk
🔝回到顶部
Docker
Official
Mirrors
- Aliyun
- Tencent
- HUAWEI
- 火山引擎
- 北大
- 清华
- 中科大
- 浙江大学
- 北京外国语大学
- 上海交通
- 西北农林科技大学
- 南京大学
🔝回到顶部
Kubernetes
Official
Mirrors
- Aliyun
- Tencent
- HUAWEI
- 火山引擎
- 北大
- 清华
- 中科大
🔝回到顶部
K3s
Official
Mirrors
- 清华
- 北京外国语大学
- 南京大学
🔝回到顶部
Minikube
Official
Mirrors
- 清华
- 北京外国语大学
- 南京大学
🔝回到顶部
Helm
Official
Mirrors
🔝回到顶部
Harbor
Official
Mirrors
- 清华
- 北京外国语大学
- 南京大学
🔝回到顶部
Jenkins
Official
- 安装包-稳定版:https://get.jenkins.io/war-stable/
- 安装包-开发版:https://get.jenkins.io/war/
- 插件:https://plugins.jenkins.io/
Mirrors
- Aliyun
- Tencent
- HUAWEI
- 火山引擎
- 中科大
- 清华
- 北京外国语大学
- 南京大学
🔝回到顶部
GitLab-ce
Official
Mirrors
- Aliyun
- Tencent
- 清华
- 南京大学
🔝回到顶部
GitLab-runner
Official
Mirrors
- Tencent
- 清华
- 北京外国语大学
- 南京大学
🔝回到顶部
ElasticSearch
Official
Mirrors
- elastic 中文社区
- Aliyun
- HUAWEI
- Tencent
- 清华
🔝回到顶部
Logstash
Official
Mirrors
- elastic 中文社区
- HUAWEI
🔝回到顶部
Kibana
Official
Mirrors
- elastic 中文社区
- HUAWEI
🔝回到顶部
Filebeat
Official
Mirrors
- elastic 中文社区
- HUAWEI
🔝回到顶部
MySQL
Official
Mirrors
- Aliyun
- HUAWEI
- Tencent
- Souhu
- 清华
- 中科大
- 南阳理工
- 北京外国语大学
- 南京大学
🔝回到顶部
MariaDB
Official
Mirrors
- Aliyun
- Tencent
- HUAWEI
- 清华
- 中科大
🔝回到顶部
Percona
Official
Mirrors
- Tencent
- 火山引擎
- 清华
- 中科大
🔝回到顶部
MongoDB
Official
Mirrors
- Aliyun
- Tencent
- 火山引擎
- 163
- 清华
- 北京外国语大学
- 南京大学
🔝回到顶部
Redis
Official
Mirrors
🔝回到顶部
PostgreSQL
Official
Mirrors
- Aliyun
- Tencen
- HUAWEI
- 火山引擎
- 清华
- 中科大
- 浙江大学
- 南阳理工
- 北京外国语大学
- 南京大学
🔝回到顶部
Golang
Official
Mirrors
- Go 语言中文网
- Aliyun
- 中科大
- 南京大学
- 华中科技大学
🔝回到顶部
Node
Official
Mirrors
- Aliyun
- HUAWEI
- Tencent
- 火山引擎
- 清华
- 中科大
- 北京外国语大学
🔝回到顶部
Yarn
Official
Mirrors
🔝回到顶部
Python
Official
Mirrors
- HUAWEI
- 北京交通
- 淘宝 NPM
🔝回到顶部
Rust
Official
Mirrors
- 清华
- 上海交通大学
- 华中科技大学
🔝回到顶部
Maven
Official
Mirrors
🔝回到顶部
Zabbix
Official
Mirrors
- Aliyun
- HUAWEI
- Tencent
- 火山引擎
- 清华
- 南阳理工
- 北京外国语大学
- 西北农林科技大学
🔝回到顶部
Prometheus
Official
Mirrors
- 清华
- 北京外国语大学
- 南京大学
- 上海交通大学
🔝回到顶部
Grafana
Official
Mirrors
- Aliyun
- HUAWEI
- Tencent
- 清华
- 北京外国语大学
- 西北农林科技大学
- 南京大学
🔝回到顶部
Pinpoint
Official
Mirrors
🔝回到顶部
Apache
Official
Mirrors
- Aliyun
- HUAWEI
- Tencent
- Souhu
- 北大
- 清华
- 中科大
- 北京交通
- 南京大学
🔝回到顶部
Nginx
Official
Mirrors
- HUAWEI
- Souhu
- 中科大
- 西北农林科技大学
- 南京大学
🔝回到顶部
OpenResty
Official
Mirrors
- Tencent
- HUAWEI
- 中科大
- 西北农林科技大学
- 南京大学
🔝回到顶部
Keepalived
Official
Mirrors
🔝回到顶部
Ceph
Official
Mirrors
- Aliyun
- Tencent
- HUAWEI
- 163
- 清华
- 重庆大学
- 中科大
- 南京大学
🔝回到顶部
Influxdata
Official
Mirrors
- Tencent
- 清华
- 中科大
- 北京外国语大学
- 南京大学
🔝回到顶部
ClickHouse
Official
Mirrors
🔝回到顶部
Rabbitmq
Official
Mirrors
🔝回到顶部
ETCD
Official
Mirrors
🔝回到顶部
WireShark
Official
Mirrors
🔝回到顶部
Virtualbox
Official
Mirrors
- Tencent
- 清华
- 北京外国语大学
🔝回到顶部
iina
Official
Mirrors
- Aliyun
- Tencent
- 清华
- 北京外国语大学
- 南京大学
🔝回到顶部
chromium
Official
Mirrors
- Aliyun
- huaweicloud
- ungoogled-software.github.io(ungoogle chromium)
🔝回到顶部
System-Mirror
系统镜像,又大又远,更需要找到好用优秀的国内镜像。
CentOS
尽管 CentOS 不再更新了,但它仍旧并且还将持续是国内企业系统主力军。
可能官方考虑到下载困难的问题,官方也列出了距离使用者更近的镜像列表,可谓贴心。
Official
Mirrors
- Aliyun
- Tencent
- HUAWEI
- 火山引擎
- 163
- Souhu
- 北大
- 清华
- 中科大
- 浙江大学
- 兰州大学
- 上海交通
- 首都在线
- 北京外国语大学
- 公云
- 北京交通
- 西北农林科技大学
- 南京大学
🔝回到顶部
CentOS-altarch
ARM 架构下的 CentOS 镜像。
Official
Mirrors
- Aliyun
- Tencent
- HUAWEI
- 火山引擎
- 清华
- 中科大
- 兰州大学
- 北京外国语大学
- 南京大学
🔝回到顶部
Ubuntu
Official
Mirrors
- Aliyun
- Tencent
- HUAWEI
- 火山引擎
- 163
- Souhu
- 北大
- 清华
- 中科大
- 浙江大学
- 兰州大学
- 大连东软
- 上海交通
- 首都在线
- 南阳理工
- 重庆大学
- 北京外国语大学
- 北京交通
- 南京大学
- 华中科技大学
🔝回到顶部
Debian
Official
Mirrors
- Aliyun
- Tencent
- HUAWEI
- 火山引擎
- 163
- Souhu
- 北大
- 清华
- 中科大
- 浙江大学
- 兰州大学
- 大连东软
- 上海交通
- 首都在线
- 南阳理工
- 重庆大学
- 北京外国语大学
- 公云
- 北京交通
- 南京大学
- 华中科技大学
🔝回到顶部
Deepin
Official
Mirrors
- Aliyun
- HUAWEI
- 163
- Souhu
- 清华
- 中科大
- 浙江大学
- 兰州大学
- 上海交通
- 南阳理工
- 重庆大学
- 北京外国语大学
- 南京大学
- 华中科技大学
🔝回到顶部
Fedora
Official
Mirrors
- Aliyun
- Tencent
- HUAWEI
- 火山引擎
- 163
- Souhu
- 清华
- 中科大
- 浙江大学
- 兰州大学
- 上海交通
- 重庆大学
- 北京外国语大学
- 南京大学
🔝回到顶部
Alpine
Official
Mirrors
- Aliyun
- Tencent
- HUAWEI
- 火山引擎
- 中科大
- 兰州大学
- 重庆大学
- 北京外国语大学
- 清华大学
- 上海交大
- 南方科技大学
- 北京交通
- 南京大学
- 华中科技大学
🔝回到顶部
Void
Official
Mirrors
- 清华大学
- 上海交大
- 北京外国语大学
- 南京大学
🔝回到顶部
Gentoo
Official
Mirrors
- Aliyun
- Tencent
- HUAWEI
- 163
- Souhu
- 清华
- 中科大
- 浙江大学
- 兰州大学
- 北京外国语大学
- 上海交通
- 南京大学
🔝回到顶部
kali
Official
Mirrors
- Aliyun
- Tencent
- HUAWEI
- 火山引擎
- 清华
- 中科大
- 浙江大学
- 南阳理工
- 大连东软
- 重庆大学
- 北京外国语大学
- 上海交通大学
- 北京交通
- 西北农林科技大学
- 南京大学
- 华中科技大学
🔝回到顶部
Opensuse
Official
Mirrors
- Aliyun
- Tencent
- HUAWEI
- 火山引擎
- Souhu
- 北大
- 中科大
- 兰州大学
- 上海交通
- 首都在线
- 重庆大学
- 重庆大学
- 南方科技大学
- 北京外国语大学
- 北京交通
- 南京大学
🔝回到顶部
FreeBSD
Official
Mirrors
注意:FreeBSD 有四类源:pkg、ports、portsnap、update。不是所有镜像站都同时支持上述四类源。目前在大陆境内没有官方镜像站,以下均为非官方镜像站。
pkg 源:pkg 源提供二进制安装包
pkg 的下载路径是 /var/cache/pkg/
FreeBSD 中 pkg 源分为系统级和用户级两个配置文件。不建议直接修改 /etc/pkg/FreeBSD.conf
,因为该文件会随着基本系统的更新而发生改变。
创建用户级源目录:
# mkdir -p /usr/local/etc/pkg/repos
网易开源镜像站
创建用户级源文件:
# ee /usr/local/etc/pkg/repos/163.conf
写入以下内容:
163: {
url: "pkg+http://mirrors.163.com/freebsd-pkg/${ABI}/quarterly",
mirror_type: "srv",
signature_type: "none",
fingerprints: "/usr/share/keys/pkg",
enabled: yes
}
FreeBSD: { enabled: no }
故障排除
若要获取滚动更新的包,请将
quarterly
修改为latest
。二者区别见 FreeBSD 手册。请注意,CURRENT
版本只有latest
:# sed -i '' 's/quarterly/latest/g' /etc/pkg/FreeBSD.conf
若要使用 https,请先安装
security/ca_root_nss
,并将http
修改为https
,最后使用命令# pkg update -f
刷新缓存即可。
中国科学技术大学开源软件镜像站
创建用户级源文件:
# ee /usr/local/etc/pkg/repos/ustc.conf
写入以下内容:
ustc: {
url: "pkg+http://mirrors.ustc.edu.cn/freebsd-pkg/${ABI}/quarterly",
mirror_type: "srv",
signature_type: "none",
fingerprints: "/usr/share/keys/pkg",
enabled: yes
}
FreeBSD: { enabled: no }
南京大学开源镜像站
# ee /usr/local/etc/pkg/repos/nju.conf
写入以下内容:
nju: {
url: "pkg+http://mirrors.nju.edu.cn/freebsd-pkg/${ABI}/quarterly",
mirror_type: "srv",
signature_type: "none",
fingerprints: "/usr/share/keys/pkg",
enabled: yes
}
FreeBSD: { enabled: no }
FreeBSD.cn
# ee /usr/local/etc/pkg/repos/freebsdcn.conf
写入以下内容:
freebsdcn: {
url: "pkg+http://pkg.freebsd.cn/${ABI}/quarterly",
mirror_type: "srv",
signature_type: "none",
fingerprints: "/usr/share/keys/pkg",
enabled: yes
}
FreeBSD: { enabled: no }
ports 源:以源代码方式安装软件的包管理器
ports 下载路径是
/usr/ports/distfiles
。警告
只有 freebsd.cn 镜像站的 ports 镜像是完整的,其余的大概只镜像了不到十分之一。请优先考虑使用 FreeBSD.cn。见 https://github.com/ustclug/discussions/issues/408。
FreeBSD.cn(推荐)
创建或修改文件 # ee /etc/make.conf
:
写入以下内容(注意结尾的 / 是必须的!下同):
MASTER_SITE_OVERRIDE?=http://ports.freebsd.cn/ports-distfiles/${DIST_SUBDIR}/
网易开源镜像站(该镜像不完整)
创建或修改文件 # ee /etc/make.conf
:
写入以下内容:
MASTER_SITE_OVERRIDE?=http://mirrors.163.com/freebsd-ports/distfiles/${DIST_SUBDIR}/
中国科学技术大学开源软件镜像站(该镜像不完整)
创建或修改文件 # ee /etc/make.conf
:
写入以下内容:
MASTER_SITE_OVERRIDE?=http://mirrors.ustc.edu.cn/freebsd-ports/distfiles/${DIST_SUBDIR}/
portsnap 源:打包的 ports 文件
FreeBSD.cn
编辑 portsnap 配置文件 # ee /etc/portsnap.conf
:
将 SERVERNAME=portsnap.FreeBSD.org
修改为 SERVERNAME=portsnap.FreeBSD.cn
freebsd-update 源:提供基本系统更新
注意:只有一级架构的 release 版本才提供该源。也就是说 current 和 stable 是没有 freebsd-update 源的。 关于架构的支持等级说明请看:
FreeBSD.cn
编辑 # ee /etc/freebsd-update.conf
文件:
将 ServerName update.FreeBSD.org
修改为 ServerName update.FreeBSD.cn
🔝回到顶部
GNU
Official
Mirrors
- Aliyun
- Tencent
- HUAWEI
- 火山引擎
- 清华
- 中科大
- 兰州大学
- 北京交通
- 南京大学
🔝回到顶部
Other-Mirror
Docker-hub
没有整理 Docker-hub 的镜像的原因是,鉴于这种仓库的特殊性,国内也确实没有一家将之全站镜像的,果真如此,倒也并不科学了。
不过关于 Docker-hub 以及 GitHub 的使用,又的确会经常遇到网络方面的问题,因此也一直在留心这方面的解决方案,目前大多是提供加速的方案,算是镜像方案之下的一个折中策略。
Official
其他的镜像仓库不再单独列出。
Mirrors
方案一:
使用方式:
使用方式都是替换原来镜像的前缀域名即可实现加速效果,比如:
原来地址: eryajf/centos:7.4 # 这个是官方镜像,省略了前边的域名
替换地址: docker.mirrors.sjtug.sjtu.edu.cn/eryajf/centos:7.4
另外,加速通常只是针对某个源站进行的加速,国外对公开放的 docker 仓库并非官方一家,因此这里就以源站的维度进行区分,整理出经过测试可用的加速站。
- Docker-hub
- 上海交通大学
- docker.mirrors.sjtug.sjtu.edu.cn
- 中科大
- docker.mirrors.ustc.edu.cn
- docker proxy
- dockerproxy.com
- 上海交通大学
- gcr.io
- 南京大学
- gcr.nju.edu.cn
- docker proxy
- gcr.dockerproxy.com
- lank8s:后期可能会转成付费
- gcr.lank8s.cn
- 南京大学
- k8s.gcr.io
- 上海交通大学
- k8s-gcr-io.mirrors.sjtug.sjtu.edu.cn
- 南京大学
- gcr.nju.edu.cn/google-containers
- docker proxy
- k8s.dockerproxy.com
- lank8s
- lank8s.cn
- 上海交通大学
- ghcr.io
- docker proxy
- ghcr.dockerproxy.com
- 南京大学
- ghcr.nju.edu.cn
- docker proxy
- quay.io
- 中科大
- quay.mirrors.ustc.edu.cn
- 南京大学
- quay.nju.edu.cn
- 中科大
- nvcr.io
- 南京大学
- ngc.nju.edu.cn
- 南京大学
- 其他
方案二:
还有一种方案是通过将加速地址写入到 docker 配置文件当中实现加速。
在 /etc/docker/daemon.json
中写入如下内容(如果文件不存在请新建该文件):
{
"registry-mirrors": [
"https://hub-mirror.c.163.com"
]
}
注意,一定要保证该文件符合 json 规范,否则 Docker 将不能启动。
之后重新启动服务。
$ sudo systemctl daemon-reload
$ sudo systemctl restart docker
目前可用的加速地址有:
- 网易
- ustc
- 百度云
🔝回到顶部
GitHub
Official
Mirrors
GitHub 相关的国内镜像,有不同的使用方式,这里仅列出目前可用的国内镜像,具体用法请查阅镜像的官方说明。
-
提供了 GitHub 全面的加速,详见官方文档。
-
GitHub 文件 , Releases , archive , gist , raw.githubusercontent.com 文件代理加速下载服务,使用细则参见官方。
-
与油猴脚本效果一致,只是通过插件的形式安装配置。
🔝回到顶部
Official
Mirrors
目前所能使用到的,基本上都是一些加速方案,而且并不十分稳定。
- 目前来看还不错的
暂无
🔝回到顶部
Nix
Official
Mirrors
- 清华
- 中国科学技术大学
- ISCAS
- 校园网联合镜像站
🔝回到顶部
如何贡献
欢迎大家补充优秀的镜像,让我们一起建设好这个仓库!
贡献内容只需要注意目录的层级与原有内容格式对齐,术业有专攻,大家提交的镜像,最好都是有经过测试验证的!
贡献者
<!-- readme: collaborators,contributors -start --> <table> <tr> <td align="center"> <a href="https://github.com/eryajf"> <img src="https://avatars.githubusercontent.com/u/33259379?v=4" width="100;" alt="eryajf"/> <br /> <sub><b>二丫讲梵</b></sub> </a> </td> <td align="center"> <a href="https://github.com/ykla"> <img src="https://avatars.githubusercontent.com/u/10327999?v=4" width="100;" alt="ykla"/> <br /> <sub><b>Ykla</b></sub> </a> </td> <td align="center"> <a href="https://github.com/yanecc"> <img src="https://avatars.githubusercontent.com/u/89304297?v=4" width="100;" alt="yanecc"/> <br /> <sub><b>Sunrise</b></sub> </a> </td> <td align="center"> <a href="https://github.com/poplar-at-twilight"> <img src="https://avatars.githubusercontent.com/u/87272716?v=4" width="100;" alt="poplar-at-twilight"/> <br /> <sub><b>Poplar At Twilight</b></sub> </a> </td> <td align="center"> <a href="https://github.com/colinxu2020"> <img src="https://avatars.githubusercontent.com/u/63941938?v=4" width="100;" alt="colinxu2020"/> <br /> <sub><b>Colinxu2020</b></sub> </a> </td> <td align="center"> <a href="https://github.com/danbai225"> <img src="https://avatars.githubusercontent.com/u/40517872?v=4" width="100;" alt="danbai225"/> <br /> <sub><b>淡白</b></sub> </a> </td></tr> <tr> <td align="center"> <a href="https://github.com/Goojoe"> <img src="https://avatars.githubusercontent.com/u/78355492?v=4" width="100;" alt="Goojoe"/> <br /> <sub><b>咕咕乔</b></sub> </a> </td> <td align="center"> <a href="https://github.com/jingjingxyk"> <img src="https://avatars.githubusercontent.com/u/6836228?v=4" width="100;" alt="jingjingxyk"/> <br /> <sub><b>好吧,你想说啥</b></sub> </a> </td> <td align="center"> <a href="https://github.com/hoochanlon"> <img src="https://avatars.githubusercontent.com/u/35732922?v=4" width="100;" alt="hoochanlon"/> <br /> <sub><b>菠萝包趣多多</b></sub> </a> </td></tr> </table> <!-- readme: collaborators,contributors -end -->🔝回到顶部