linux常用加速器使用

Posted ops_sylar

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux常用加速器使用相关的知识,希望对你有一定的参考价值。

Centos

CentOS
1、备份
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
2、下载新的CentOS-Base.repo 到/etc/yum.repos.d/
CentOS 5
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo
或者
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo
CentOS 6
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
或者
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
CentOS 7
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
或者
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
3、之后运行yum makecache生成缓存

PYPI

[[email protected] second]# mkdir -p ~/.pip
[[email protected] second]# vi ~/.pip/pip.conf
[global]
index-url = https://pypi.doubanio.com/simple/

Ruby

gem sources --add https://gems.ruby-china.org/ --remove https://rubygems.org/
gem sources -l

Docker 加速器

安装加速

curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
windows
{
  "registry-mirrors": ["https://okjbj3m0.mirror.aliyuncs.com"]
}
linux
echo "DOCKER_OPTS=--registry-mirror=https://dom4w2gh.mirror.aliyuncs.com" | tee -a /etc/default/docker
sed -i "s|ExecStart=/usr/bin/docker daemon|ExecStart=/usr/bin/docker daemon --registry-mirror=https://dom4w2gh.mirror.aliyuncs.com|g" /etc/systemd/system/docker.service
sed -i "s|ExecStart=/usr/bin/docker daemon|ExecStart=/usr/bin/docker daemon --registry-mirror=https://dom4w2gh.mirror.aliyuncs.com|g"  /etc/systemd/system/multi-user.target.wants/docker.service
ubuntu
sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<-‘EOF‘
{
  "registry-mirrors": ["https://okjbj3m0.mirror.aliyuncs.com"]
}
EOF
sudo systemctl daemon-reload
sudo systemctl restart docker

以上是关于linux常用加速器使用的主要内容,如果未能解决你的问题,请参考以下文章

nodejs常用代码片段

# Java 常用代码片段

# Java 常用代码片段

python常用代码片段总结

js 常用代码片段

常用的几个JQuery代码片段