Termux安卓5/6版本的可用镜像源

感谢Tony对镜像源的整理与同步。

复活镜像

你以为TUNA取消了对OSDN的同步就完了吗?我当然要复活镜像。

既然国内没了,那国外呢?

随后找到了一个国外的镜像站ftp.halifax.rwth-aachen.de

https://ftp.halifax.rwth-aachen.de/

但国外的镜像站,通常在国内的速度不足,所以,我采取了Cloudflare Workers反代的方式,将该网站路由至Cloudflare全球网络。

使用的Workers代码:

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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
// 镜像站点
const upstream = 'ftp.halifax.rwth-aachen.de'

// 手机端镜像站点
const upstream_mobile = 'ftp.halifax.rwth-aachen.de'

// 禁止国家访问
const blocked_region = ['JP']

// 禁止自访问
const blocked_ip_address = ['0.0.0.0', '127.0.0.1']

// 替换成你想镜像的站点
const replace_dict = {
'$upstream': '$custom_domain',
'//ftp.halifax.rwth-aachen.de': ''
}

//以下内容都不用动
addEventListener('fetch', event => {
event.respondWith(fetchAndApply(event.request));
})

async function fetchAndApply(request) {

const region = request.headers.get('cf-ipcountry').toUpperCase();
const ip_address = request.headers.get('cf-connecting-ip');
const user_agent = request.headers.get('user-agent');

let response = null;
let url = new URL(request.url);
let url_host = url.host;

if (url.protocol == 'http:') {
url.protocol = 'https:'
response = Response.redirect(url.href);
return response;
}

if (await device_status(user_agent)) {
upstream_domain = upstream
} else {
upstream_domain = upstream_mobile
}

url.host = upstream_domain;

if (blocked_region.includes(region)) {
response = new Response('Access denied: WorkersProxy is not available in your region yet.', {
status: 403
});
} else if(blocked_ip_address.includes(ip_address)){
response = new Response('Access denied: Your IP address is blocked by WorkersProxy.', {
status: 403
});
} else{
let method = request.method;
let request_headers = request.headers;
let new_request_headers = new Headers(request_headers);

new_request_headers.set('Host', upstream_domain);
new_request_headers.set('Referer', url.href);

let original_response = await fetch(url.href, {
method: method,
headers: new_request_headers
})

let original_response_clone = original_response.clone();
let original_text = null;
let response_headers = original_response.headers;
let new_response_headers = new Headers(response_headers);
let status = original_response.status;

new_response_headers.set('access-control-allow-origin', '*');
new_response_headers.set('access-control-allow-credentials', true);
new_response_headers.delete('content-security-policy');
new_response_headers.delete('content-security-policy-report-only');
new_response_headers.delete('clear-site-data');

const content_type = new_response_headers.get('content-type');
if (content_type.includes('text/html') && content_type.includes('UTF-8')) {
original_text = await replace_response_text(original_response_clone, upstream_domain, url_host);
} else {
original_text = original_response_clone.body
}

response = new Response(original_text, {
status,
headers: new_response_headers
})
}
return response;
}

async function replace_response_text(response, upstream_domain, host_name) {
let text = await response.text()

var i, j;
for (i in replace_dict) {
j = replace_dict[i]
if (i == '$upstream') {
i = upstream_domain
} else if (i == '$custom_domain') {
i = host_name
}

if (j == '$upstream') {
j = upstream_domain
} else if (j == '$custom_domain') {
j = host_name
}

let re = new RegExp(i, 'g')
text = text.replace(re, j);
}
return text;
}

async function device_status (user_agent_info) {
var agents = ["Android", "iPhone", "SymbianOS", "Windows Phone", "iPad", "iPod"];
var flag = true;
for (var v = 0; v < agents.length; v++) { if (user_agent_info.indexOf(agents[v]) > 0) {
flag = false;
break;
}
}
return flag;
}

并且使用在我前面提到的Cloudflare自定义官方CNAME接入教程中,自定义了IP.

所以,你可以使用www.zihu.me这一域名来继续开心的在旧手机上使用TERMUX.

1
2
3
4
5
6
echo "deb https://www.zihu.me/osdn/storage/g/t/te/termux-old/termux-packages stable main" > $PREFIX/etc/apt/sources.list
echo "deb https://www.zihu.me/osdn/storage/g/t/te/termux-old/science-packages-21 science stable" >> $PREFIX/etc/apt/sources.list
echo "deb https://www.zihu.me/osdn/storage/g/t/te/termux-old/game-packages-21 games stable" >> $PREFIX/etc/apt/sources.list
echo "deb https://www.zihu.me/osdn/storage/g/t/te/termux-old/unstable-packages-21 unstable main" >> $PREFIX/etc/apt/sources.list
echo "deb https://www.zihu.me/osdn/storage/g/t/te/termux-old/x11-packages-21 x11 main" >> $PREFIX/etc/apt/sources.list

当然,如果你是在Cloudflare网络下较慢的情况下,例如电信。你可以直接使用ftp.halifax.rwth-aachen.de

注意

由于Tuna取消了对OSDN的同步,其下游仓库也已同步取消。所以在国内的镜像源几乎无法使用。包括下面的所有镜像。

使用一键换源脚本(需安装Python)

1
wget https://blog.iamsjy.com/scripts/termux-old.py && python3 termux-old.py

更换至清华源(清华大学开源软件镜像站)

1
2
3
4
5
echo "deb https://mirrors.tuna.tsinghua.edu.cn/osdn/storage/g/t/te/termux-old/termux-packages stable main" > $PREFIX/etc/apt/sources.list
echo "deb https://mirrors.tuna.tsinghua.edu.cn/osdn/storage/g/t/te/termux-old/science-packages-21 science stable" >> $PREFIX/etc/apt/sources.list
echo "deb https://mirrors.tuna.tsinghua.edu.cn/osdn/storage/g/t/te/termux-old/game-packages-21 games stable" >> $PREFIX/etc/apt/sources.list
echo "deb https://mirrors.tuna.tsinghua.edu.cn/osdn/storage/g/t/te/termux-old/unstable-packages-21 unstable main" >> $PREFIX/etc/apt/sources.list
echo "deb https://mirrors.tuna.tsinghua.edu.cn/osdn/storage/g/t/te/termux-old/x11-packages-21 x11 main" >> $PREFIX/etc/apt/sources.list

更换至北外源(北京外国语大学开源软件镜像站)

1
2
3
4
5
echo "deb https://mirrors.bfsu.edu.cn/osdn/storage/g/t/te/termux-old/termux-packages stable main" > $PREFIX/etc/apt/sources.list 
echo "deb https://mirrors.bfsu.edu.cn/osdn/storage/g/t/te/termux-old/science-packages-21 science stable" >> $PREFIX/etc/apt/sources.list
echo "deb https://mirrors.bfsu.edu.cn/osdn/storage/g/t/te/termux-old/game-packages-21 games stable" >> $PREFIX/etc/apt/sources.list
echo "deb https://mirrors.bfsu.edu.cn/osdn/storage/g/t/te/termux-old/unstable-packages-21 unstable main" >> $PREFIX/etc/apt/sources.list
echo "deb https://mirrors.bfsu.edu.cn/osdn/storage/g/t/te/termux-old/x11-packages-21 x11 main" >> $PREFIX/etc/apt/sources.list

更换至ISCAS源(ISRC-ISCAS 开源镜像站)

1
2
3
4
5
echo "deb https://mirror.iscas.ac.cn/osdn/storage/g/t/te/termux-old/termux-packages stable main" > $PREFIX/etc/apt/sources.list 
echo "deb https://mirror.iscas.ac.cn/osdn/storage/g/t/te/termux-old/science-packages-21 science stable" >> $PREFIX/etc/apt/sources.list
echo "deb https://mirror.iscas.ac.cn/osdn/storage/g/t/te/termux-old/game-packages-21 games stable" >> $PREFIX/etc/apt/sources.list
echo "deb https://mirror.iscas.ac.cn/osdn/storage/g/t/te/termux-old/unstable-packages-21 unstable main" >> $PREFIX/etc/apt/sources.list
echo "deb https://mirror.iscas.ac.cn/osdn/storage/g/t/te/termux-old/x11-packages-21 x11 main" >> $PREFIX/etc/apt/sources.list

更换至南京源(南京大学开源镜像站)

1
2
3
4
5
echo "deb https://mirror.nju.edu.cn/osdn/storage/g/t/te/termux-old/termux-packages stable main" > $PREFIX/etc/apt/sources.list 
echo "deb https://mirror.nju.edu.cn/osdn/storage/g/t/te/termux-old/science-packages-21 science stable" >> $PREFIX/etc/apt/sources.list
echo "deb https://mirror.nju.edu.cn/osdn/storage/g/t/te/termux-old/game-packages-21 games stable" >> $PREFIX/etc/apt/sources.list
echo "deb https://mirror.nju.edu.cn/osdn/storage/g/t/te/termux-old/unstable-packages-21 unstable main" >> $PREFIX/etc/apt/sources.list
echo "deb https://mirror.nju.edu.cn/osdn/storage/g/t/te/termux-old/x11-packages-21 x11 main" >> $PREFIX/etc/apt/sources.list

更换后需删除science.list 和 game.list:

1
rm $PREFIX/etc/apt/sources.list.d/*

Termux安卓5/6版本的可用镜像源
https://blog.inkdust.top/termux-old.html
作者
墨尘
发布于
2022年8月24日
许可协议