mirror of
				https://gitee.com/SuperManito/LinuxMirrors
				synced 2025-11-04 16:30:26 +08:00 
			
		
		
		
	默认软件源新增 "火山引擎" 镜像站 & 优化指定地址命令选项
This commit is contained in:
		@@ -1,6 +1,6 @@
 | 
				
			|||||||
#!/bin/bash
 | 
					#!/bin/bash
 | 
				
			||||||
## Author: SuperManito
 | 
					## Author: SuperManito
 | 
				
			||||||
## Modified: 2023-10-24
 | 
					## Modified: 2024-01-12
 | 
				
			||||||
## License: MIT
 | 
					## License: MIT
 | 
				
			||||||
## GitHub: https://github.com/SuperManito/LinuxMirrors
 | 
					## GitHub: https://github.com/SuperManito/LinuxMirrors
 | 
				
			||||||
## Website: https://linuxmirrors.cn
 | 
					## Website: https://linuxmirrors.cn
 | 
				
			||||||
@@ -13,6 +13,7 @@ mirror_list_default=(
 | 
				
			|||||||
    "华为云@repo.huaweicloud.com"
 | 
					    "华为云@repo.huaweicloud.com"
 | 
				
			||||||
    "网易@mirrors.163.com"
 | 
					    "网易@mirrors.163.com"
 | 
				
			||||||
    "搜狐@mirrors.sohu.com"
 | 
					    "搜狐@mirrors.sohu.com"
 | 
				
			||||||
 | 
					    "火山引擎@mirrorvolc.volces.com"
 | 
				
			||||||
    "清华大学@mirrors.tuna.tsinghua.edu.cn"
 | 
					    "清华大学@mirrors.tuna.tsinghua.edu.cn"
 | 
				
			||||||
    "北京大学@mirrors.pku.edu.cn"
 | 
					    "北京大学@mirrors.pku.edu.cn"
 | 
				
			||||||
    "浙江大学@mirrors.zju.edu.cn"
 | 
					    "浙江大学@mirrors.zju.edu.cn"
 | 
				
			||||||
@@ -133,12 +134,14 @@ mirror_list_extranet=(
 | 
				
			|||||||
    "mirrors.aliyun.com"
 | 
					    "mirrors.aliyun.com"
 | 
				
			||||||
    "mirrors.tencent.com"
 | 
					    "mirrors.tencent.com"
 | 
				
			||||||
    "repo.huaweicloud.com"
 | 
					    "repo.huaweicloud.com"
 | 
				
			||||||
 | 
					    "mirrorvolc.volces.com"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
# 软件源内网地址列表
 | 
					# 软件源内网地址列表
 | 
				
			||||||
mirror_list_intranet=(
 | 
					mirror_list_intranet=(
 | 
				
			||||||
    "mirrors.cloud.aliyuncs.com"
 | 
					    "mirrors.cloud.aliyuncs.com"
 | 
				
			||||||
    "mirrors.tencentyun.com"
 | 
					    "mirrors.tencentyun.com"
 | 
				
			||||||
    "mirrors.myhuaweicloud.com"
 | 
					    "mirrors.myhuaweicloud.com"
 | 
				
			||||||
 | 
					    "mirrors.ivolces.com"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
##############################################################################
 | 
					##############################################################################
 | 
				
			||||||
@@ -4971,7 +4974,7 @@ function CommandOptions() {
 | 
				
			|||||||
                if [ $? -eq 0 ]; then
 | 
					                if [ $? -eq 0 ]; then
 | 
				
			||||||
                    Output_Error "检测到无效参数值 ${BLUE}$2${PLAIN} ,请输入有效的地址!"
 | 
					                    Output_Error "检测到无效参数值 ${BLUE}$2${PLAIN} ,请输入有效的地址!"
 | 
				
			||||||
                else
 | 
					                else
 | 
				
			||||||
                    SOURCE="$2"
 | 
					                    SOURCE="$(echo "$2" | sed -e 's,^http[s]\?://,,g' -e 's,/$,,')"
 | 
				
			||||||
                    shift
 | 
					                    shift
 | 
				
			||||||
                fi
 | 
					                fi
 | 
				
			||||||
            else
 | 
					            else
 | 
				
			||||||
@@ -4984,7 +4987,7 @@ function CommandOptions() {
 | 
				
			|||||||
                if [ $? -eq 0 ]; then
 | 
					                if [ $? -eq 0 ]; then
 | 
				
			||||||
                    Output_Error "检测到无效参数值 ${BLUE}$2${PLAIN} ,请输入有效的地址!"
 | 
					                    Output_Error "检测到无效参数值 ${BLUE}$2${PLAIN} ,请输入有效的地址!"
 | 
				
			||||||
                else
 | 
					                else
 | 
				
			||||||
                    SOURCE_SECURITY="$2"
 | 
					                    SOURCE_SECURITY="$(echo "$2" | sed -e 's,^http[s]\?://,,g' -e 's,/$,,')"
 | 
				
			||||||
                    shift
 | 
					                    shift
 | 
				
			||||||
                fi
 | 
					                fi
 | 
				
			||||||
            else
 | 
					            else
 | 
				
			||||||
@@ -4997,7 +5000,7 @@ function CommandOptions() {
 | 
				
			|||||||
                if [ $? -eq 0 ]; then
 | 
					                if [ $? -eq 0 ]; then
 | 
				
			||||||
                    Output_Error "检测到无效参数值 ${BLUE}$2${PLAIN} ,请输入有效的地址!"
 | 
					                    Output_Error "检测到无效参数值 ${BLUE}$2${PLAIN} ,请输入有效的地址!"
 | 
				
			||||||
                else
 | 
					                else
 | 
				
			||||||
                    SOURCE_VAULT="$2"
 | 
					                    SOURCE_VAULT="$(echo "$2" | sed -e 's,^http[s]\?://,,g' -e 's,/$,,')"
 | 
				
			||||||
                    shift
 | 
					                    shift
 | 
				
			||||||
                fi
 | 
					                fi
 | 
				
			||||||
            else
 | 
					            else
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,6 +1,6 @@
 | 
				
			|||||||
#!/bin/bash
 | 
					#!/bin/bash
 | 
				
			||||||
## Author: SuperManito
 | 
					## Author: SuperManito
 | 
				
			||||||
## Modified: 2023-07-15
 | 
					## Modified: 2024-01-12
 | 
				
			||||||
## License: MIT
 | 
					## License: MIT
 | 
				
			||||||
## GitHub: https://github.com/SuperManito/LinuxMirrors
 | 
					## GitHub: https://github.com/SuperManito/LinuxMirrors
 | 
				
			||||||
## Website: https://linuxmirrors.cn
 | 
					## Website: https://linuxmirrors.cn
 | 
				
			||||||
@@ -13,6 +13,7 @@ mirror_list_docker_ce=(
 | 
				
			|||||||
    "华为云@repo.huaweicloud.com/docker-ce"
 | 
					    "华为云@repo.huaweicloud.com/docker-ce"
 | 
				
			||||||
    "微软 Azure 中国@mirror.azure.cn/docker-ce"
 | 
					    "微软 Azure 中国@mirror.azure.cn/docker-ce"
 | 
				
			||||||
    "网易@mirrors.163.com/docker-ce"
 | 
					    "网易@mirrors.163.com/docker-ce"
 | 
				
			||||||
 | 
					    "火山引擎@mirrors.volces.com/docker"
 | 
				
			||||||
    "清华大学@mirrors.tuna.tsinghua.edu.cn/docker-ce"
 | 
					    "清华大学@mirrors.tuna.tsinghua.edu.cn/docker-ce"
 | 
				
			||||||
    "北京大学@mirrors.pku.edu.cn/docker-ce"
 | 
					    "北京大学@mirrors.pku.edu.cn/docker-ce"
 | 
				
			||||||
    "南京大学@mirrors.nju.edu.cn/docker-ce"
 | 
					    "南京大学@mirrors.nju.edu.cn/docker-ce"
 | 
				
			||||||
@@ -736,7 +737,7 @@ function CommandOptions() {
 | 
				
			|||||||
                if [ $? -eq 0 ]; then
 | 
					                if [ $? -eq 0 ]; then
 | 
				
			||||||
                    Output_Error "检测到无效参数值 ${BLUE}$2${PLAIN} ,请输入有效的地址!"
 | 
					                    Output_Error "检测到无效参数值 ${BLUE}$2${PLAIN} ,请输入有效的地址!"
 | 
				
			||||||
                else
 | 
					                else
 | 
				
			||||||
                    SOURCE="$2"
 | 
					                    SOURCE="$(echo "$2" | sed -e 's,^http[s]\?://,,g' -e 's,/$,,')"
 | 
				
			||||||
                    shift
 | 
					                    shift
 | 
				
			||||||
                fi
 | 
					                fi
 | 
				
			||||||
            else
 | 
					            else
 | 
				
			||||||
@@ -750,7 +751,7 @@ function CommandOptions() {
 | 
				
			|||||||
                if [ $? -eq 0 ]; then
 | 
					                if [ $? -eq 0 ]; then
 | 
				
			||||||
                    Output_Error "检测到无效参数值 ${BLUE}$2${PLAIN} ,请输入有效的地址!"
 | 
					                    Output_Error "检测到无效参数值 ${BLUE}$2${PLAIN} ,请输入有效的地址!"
 | 
				
			||||||
                else
 | 
					                else
 | 
				
			||||||
                    SOURCE_REGISTRY="$2"
 | 
					                    SOURCE_REGISTRY="$(echo "$2" | sed -e 's,^http[s]\?://,,g' -e 's,/$,,')"
 | 
				
			||||||
                    shift
 | 
					                    shift
 | 
				
			||||||
                fi
 | 
					                fi
 | 
				
			||||||
            else
 | 
					            else
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -8,26 +8,27 @@ hide:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
## 中国大陆 :flag-CN:
 | 
					## 中国大陆 :flag-CN:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
> 下方列表中的镜像站均支持 `Debian` `Ubuntu` `CentOS` `openSUSE` `Arch Linux` 软件源  
 | 
					> 下方列表中的镜像站均支持 `Debian` `Ubuntu` `CentOS` `openSUSE` 软件源  
 | 
				
			||||||
> 列表根据单位性质、地理位置、名称长度进行排序与实际速度无关,目前没有扩充计划
 | 
					> 列表根据单位性质、地理位置、名称长度进行排序,与实际速度无关,目前没有扩充计划
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| | 镜像站名称 | IPv6协议 | Kali | Deepin | Rocky | AlmaLinux | EPEL | Fedora | openEuler | OpenCloudOS |
 | 
					| 镜像站 | IPv6 | Arch | Kali | Deepin | Rocky | AlmaLinux | EPEL | Fedora | openEuler | OpenCloudOS |
 | 
				
			||||||
| :--: | :--: | :--: | :--: | :--: | :--: | :--: | :--: | :--: | :--: | :--: |
 | 
					| :--: | :--: | :--: | :--: | :--: | :--: | :--: | :--: | :--: | :--: | :--: |
 | 
				
			||||||
| 1 | [阿里云](https://mirrors.aliyun.com "mirrors.aliyun.com") | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-circle-off-outline:{style="color:#F6B604"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} |
 | 
					| [阿里云](https://mirrors.aliyun.com "mirrors.aliyun.com") | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-circle-off-outline:{style="color:#F6B604"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} |
 | 
				
			||||||
| 2 | [腾讯云](https://mirrors.tencent.com "mirrors.tencent.com") | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} |
 | 
					| [腾讯云](https://mirrors.tencent.com "mirrors.tencent.com") | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} |
 | 
				
			||||||
| 3 | [华为云](https://mirrors.huaweicloud.com "mirrors.huaweicloud.com") | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-circle-off-outline:{style="color:#F6B604"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} |
 | 
					| [华为云](https://mirrors.huaweicloud.com "mirrors.huaweicloud.com") | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-circle-off-outline:{style="color:#F6B604"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} |
 | 
				
			||||||
| 4 | [网易](https://mirrors.163.com "mirrors.163.com") | :material-close:{style="color:#EF5350"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} |
 | 
					| [网易](https://mirrors.163.com "mirrors.163.com") | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} |
 | 
				
			||||||
| 5 | [搜狐](https://mirrors.sohu.com "mirrors.sohu.com") | :material-close:{style="color:#EF5350"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-circle-off-outline:{style="color:#F6B604"} | :material-close:{style="color:#EF5350"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} | :material-close:{style="color:#EF5350"} |
 | 
					| [搜狐](https://mirrors.sohu.com "mirrors.sohu.com") | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-circle-off-outline:{style="color:#F6B604"} | :material-close:{style="color:#EF5350"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} | :material-close:{style="color:#EF5350"} |
 | 
				
			||||||
| 6 | [清华大学](https://mirrors.tuna.tsinghua.edu.cn "mirrors.tuna.tsinghua.edu.cn") | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} |
 | 
					| [火山引擎](https://mirrors.volces.com "mirrors.volces.com") | :material-close:{style="color:#EF5350"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-circle-off-outline:{style="color:#F6B604"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} |
 | 
				
			||||||
| 7 | [北京大学](https://mirrors.pku.edu.cn/Mirrors "mirrors.pku.edu.cn/Mirrors") | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} |
 | 
					| [清华大学](https://mirrors.tuna.tsinghua.edu.cn "mirrors.tuna.tsinghua.edu.cn") | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} |
 | 
				
			||||||
| 8 | [浙江大学](https://mirrors.zju.edu.cn "mirrors.zju.edu.cn") | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} |
 | 
					| [北京大学](https://mirrors.pku.edu.cn/Mirrors "mirrors.pku.edu.cn/Mirrors") | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} |
 | 
				
			||||||
| 9 | [南京大学](https://mirrors.nju.edu.cn "mirrors.nju.edu.cn") | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} |
 | 
					| [浙江大学](https://mirrors.zju.edu.cn "mirrors.zju.edu.cn") | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} |
 | 
				
			||||||
| 10 | [重庆大学](https://mirrors.cqu.edu.cn "mirrors.cqu.edu.cn") | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-circle-off-outline:{style="color:#F6B604"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} | :material-close:{style="color:#EF5350"} |
 | 
					| [南京大学](https://mirrors.nju.edu.cn "mirrors.nju.edu.cn") | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} |
 | 
				
			||||||
| 11 | [兰州大学](https://mirror.lzu.edu.cn "mirror.lzu.edu.cn") | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} |
 | 
					| [重庆大学](https://mirrors.cqu.edu.cn "mirrors.cqu.edu.cn") | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-circle-off-outline:{style="color:#F6B604"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} | :material-close:{style="color:#EF5350"} |
 | 
				
			||||||
| 12 | [上海交通大学](https://mirror.sjtu.edu.cn "mirror.sjtu.edu.cn") | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} |
 | 
					| [兰州大学](https://mirror.lzu.edu.cn "mirror.lzu.edu.cn") | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} |
 | 
				
			||||||
| 13 | [哈尔滨工业大学](https://mirrors.hit.edu.cn "mirrors.hit.edu.cn") | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} |
 | 
					| [上海交通大学](https://mirror.sjtu.edu.cn "mirror.sjtu.edu.cn") | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} |
 | 
				
			||||||
| 14 | [中国科学技术大学](https://mirrors.ustc.edu.cn "mirrors.ustc.edu.cn") | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} |
 | 
					| [哈尔滨工业大学](https://mirrors.hit.edu.cn "mirrors.hit.edu.cn") | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} |
 | 
				
			||||||
| 15 | [中国科学院软件研究所](https://mirror.iscas.ac.cn "mirror.iscas.ac.cn") | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} |
 | 
					| [中国科学技术大学](https://mirrors.ustc.edu.cn "mirrors.ustc.edu.cn") | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} |
 | 
				
			||||||
 | 
					| [中国科学院软件研究所](https://mirror.iscas.ac.cn "mirror.iscas.ac.cn") | :material-close:{style="color:#EF5350"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-check:{style="color:#4DB6AC"} | :material-close:{style="color:#EF5350"} |
 | 
				
			||||||
 | 
					
 | 
				
			||||||
???+ question "使用帮助"
 | 
					???+ question "使用帮助"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -35,11 +36,7 @@ hide:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    如果使用脚本过程中不能正常输出中文内容则可对照此列表使用,顺序与脚本一致,之后一路回车即可。如果这里没有你想使用的教育单位镜像站,那么你可以使用[国内教育网模式](../use/index.md#%E5%9B%BD%E5%86%85%E6%95%99%E8%82%B2%E7%BD%91%E4%BD%BF%E7%94%A8)看看
 | 
					    如果使用脚本过程中不能正常输出中文内容则可对照此列表使用,顺序与脚本一致,之后一路回车即可。如果这里没有你想使用的教育单位镜像站,那么你可以使用[国内教育网模式](../use/index.md#%E5%9B%BD%E5%86%85%E6%95%99%E8%82%B2%E7%BD%91%E4%BD%BF%E7%94%A8)看看
 | 
				
			||||||
 | 
					
 | 
				
			||||||
???+ abstract "使用建议"
 | 
					    软件源的速度区分刷新速度和下行速度,后者才是关键,具体请结合实际地理位置选择尝试,建议优先使用`中科大`、`火山引擎`、`腾讯云`镜像站,你可以使用下面提到的[辅助工具网站](#工具网站)来帮助你进行选择
 | 
				
			||||||
 | 
					 | 
				
			||||||
    软件源的速度区分刷新速度和下行速度,后者才是关键,具体请结合实际地理位置选择尝试,华北地区建议优先使用`中科大`、`腾讯云`镜像站,你可以使用下面提到的[辅助工具网站](#工具网站)来帮助你进行选择
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    目前不建议使用`阿里云`镜像站,由于使用人数过多其公网下行带宽已被限制在了10M左右。如果你的内网环境过于复杂例如经过了多次NAT转换那么请不要使用`清华大学(TUNA)`镜像站,容易被阻断
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
??? note "国内教育网软件源列表"
 | 
					??? note "国内教育网软件源列表"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,7 +11,7 @@ hide:
 | 
				
			|||||||
    bash <(curl -sSL https://linuxmirrors.cn/main.sh)
 | 
					    bash <(curl -sSL https://linuxmirrors.cn/main.sh)
 | 
				
			||||||
    ```
 | 
					    ```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    !!! abstract "建议在使用前确认目标镜像站是否支持您正在使用的操作系统"
 | 
					    !!! question "请在使用前检查目标镜像站是否支持您正在使用的操作系统"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    ??? quote "原始执行命令"
 | 
					    ??? quote "原始执行命令"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -27,6 +27,8 @@ hide:
 | 
				
			|||||||
            bash <(curl -sSL https://gitee.com/SuperManito/LinuxMirrors/raw/main/ChangeMirrors.sh)
 | 
					            bash <(curl -sSL https://gitee.com/SuperManito/LinuxMirrors/raw/main/ChangeMirrors.sh)
 | 
				
			||||||
            ```
 | 
					            ```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        > 可以使用仓库原始地址来调用脚本,项目利用 GitHub Action 在每次提交后自动拷贝源码到文档目录作为网站资源发布,网站托管于知名云服务商几乎没有被劫持的风险可放心使用
 | 
				
			||||||
 | 
					
 | 
				
			||||||
=== ":material-school: 中国大陆教育网"
 | 
					=== ":material-school: 中国大陆教育网"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    ``` bash
 | 
					    ``` bash
 | 
				
			||||||
@@ -35,7 +37,7 @@ hide:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    1.  通过 `--edu` 命令选项来使用中国大陆教育单位软件源
 | 
					    1.  通过 `--edu` 命令选项来使用中国大陆教育单位软件源
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    !!! abstract "建议在使用前确认目标镜像站是否支持您正在使用的操作系统"
 | 
					    !!! question "请在使用前检查目标镜像站是否支持您正在使用的操作系统"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    ??? quote "原始执行命令"
 | 
					    ??? quote "原始执行命令"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -51,6 +53,8 @@ hide:
 | 
				
			|||||||
            bash <(curl -sSL https://gitee.com/SuperManito/LinuxMirrors/raw/main/ChangeMirrors.sh) --edu
 | 
					            bash <(curl -sSL https://gitee.com/SuperManito/LinuxMirrors/raw/main/ChangeMirrors.sh) --edu
 | 
				
			||||||
            ```
 | 
					            ```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        > 可以使用仓库原始地址来调用脚本,项目利用 GitHub Action 在每次提交后自动拷贝源码到文档目录作为网站资源发布,网站托管于知名云服务商几乎没有被劫持的风险可放心使用
 | 
				
			||||||
 | 
					
 | 
				
			||||||
=== ":octicons-globe-16: 海外地区"
 | 
					=== ":octicons-globe-16: 海外地区"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    ``` bash
 | 
					    ``` bash
 | 
				
			||||||
@@ -59,7 +63,7 @@ hide:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    1.  通过 `--abroad` 命令选项来使用海外软件源
 | 
					    1.  通过 `--abroad` 命令选项来使用海外软件源
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    !!! abstract "建议在使用前确认目标镜像站是否支持您正在使用的操作系统"
 | 
					    !!! question "请在使用前检查目标镜像站是否支持您正在使用的操作系统"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    ??? quote "原始执行命令"
 | 
					    ??? quote "原始执行命令"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -75,6 +79,8 @@ hide:
 | 
				
			|||||||
            bash <(curl -sSL https://gitee.com/SuperManito/LinuxMirrors/raw/main/ChangeMirrors.sh) --abroad
 | 
					            bash <(curl -sSL https://gitee.com/SuperManito/LinuxMirrors/raw/main/ChangeMirrors.sh) --abroad
 | 
				
			||||||
            ```
 | 
					            ```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        > 可以使用仓库原始地址来调用脚本,项目利用 GitHub Action 在每次提交后自动拷贝源码到文档目录作为网站资源发布,网站托管于知名云服务商几乎没有被劫持的风险可放心使用
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## 相关注意事项
 | 
					## 相关注意事项
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<div class="grid cards" markdown>
 | 
					<div class="grid cards" markdown>
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user