termux搭建本地源
rsync -avz --delete rsync://mirrors.tuna.tsinghua.edu.cn/termux/ /path/to/your/local/mirror
-avz
参数用于启用归档模式、压缩数据并输出详细信息。--delete
选项会删除本地不再存在于远程源中的文件,以保持同步一致性。/path/to/your/local/mirror
是你本地存放镜像的目录路径。
server {
listen 80;
server_name your_local_ip;
location /termux/ {
alias /path/to/your/local/mirror/;
autoindex on;
}
}
deb http://your_local_ip/termux/ stable main
deb https://mirrors.tuna.tsinghua.edu.cn/termux/termux-packages-24 stable main deb https://mirrors.tuna.tsinghua.edu.cn/termux/science-packages-24 science
deb https://mirrors.tuna.tsinghua.edu.cn/termux/x11-packages-24 x11
<br/>
<br/>
<br/>
评论已关闭