Some repos in aliyun

aliyun repo

pip Repo

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# ====== linux ======
mkdir ~/.pip
cat > ~/.pip/pip.conf << EOF
[global]
index-url=https://mirrors.aliyun.com/pypi/simple/
extra-index-url=https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/

[list]
format=columns

EOF
# ====== windows ======
mkdir $APPDATA/pip
touch $APPDATA/pip/pip.ini
# or (This is a legacy configuration)
mkdir $HOME/pip
touch $HOME/pip/pip.ini

centos8 Repo

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[AppStream]
name=CentOS-$releasever - aliyun - AppStream
baseurl=https://mirrors.aliyun.com/centos/$releasever/AppStream/$basearch/os/
gpgcheck=0
enabled=1

[BaseOS]
name=CentOS-$releasever - aliyun - Base
baseurl=https://mirrors.aliyun.com/centos/$releasever/BaseOS/$basearch/os/
gpgcheck=0
enabled=1

[extras]
name=CentOS-$releasever - aliyun - extras
baseurl=https://mirrors.aliyun.com/centos/$releasever/extras/$basearch/os/
gpgcheck=0
enabled=1

[centosplus]
name=CentOS-$releasever - aliyun - centosplus
baseurl=https://mirrors.aliyun.com/centos/$releasever/centosplus/$basearch/os/
gpgcheck=0
enabled=1

[HighAvailability]
name=CentOS-$releasever - aliyun - HighAvailability
baseurl=https://mirrors.aliyun.com/centos/$releasever/HighAvailability/$basearch/os/
gpgcheck=0
enabled=1

[PowerTools]
name=CentOS-$releasever - aliyun - PowerTools
baseurl=https://mirrors.aliyun.com/centos/$releasever/PowerTools/$basearch/os/
gpgcheck=0
enabled=1

[epel]
name=CentOS-$releasever - aliyun - epel
baseurl=https://mirrors.aliyun.com/epel/$releasever/Everything/$basearch/
gpgcheck=0
enabled=1

ubuntu18.04 Repo

1
2
3
4
5
6
7
8
9
10
11
12
13
14
deb https://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse