常用国内加速镜像源配置

本文总结了linux下常见的各式下载站的国内加速镜像源配置,都是笔者平时拿到一台新电脑或者重装之后(lol)必做的事情之一。

pip mirror

常用的pip国内镜像源有

临时使用只需要在后面加上一行参数

1
pip install flask -i https://pypi.tuna.tsinghua.edu.cn/simple   

如果想要一劳永逸的话

vim ~/.pip/pip.conf

1
2
3
4
5
6
[global]  
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=pypi.tuna.tsinghua.edu.cn
disable-pip-version-check = true
timeout = 6000

npm mirror

1
npm config set registry https://registry.npm.taobao.org

docker mirror

/etc/docker/daemon.json

1
2
3
4
5
6
7
{
"registry-mirrors": [
"https://docker.mirrors.ustc.edu.cn",
"https://quay.mirrors.ustc.edu.cn",
"https://gcr.mirrors.ustc.edu.cn"
]
}

maven mirror

修改maven根目录下的conf文件夹中的setting.xml文件

/home/whoami/.m2/settings.xml

1
2
3
4
5
6
7
8
<mirrors>
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/repositories/central</url>
</mirror>
</mirrors>