原理
unraid下载插件为
wget
命令,在unraid调用wget时,替换github.com为国内镜像站url
操作
- 新建
/usr/local/bin/wget
,内容如下
#!/bin/bash
opts=$@
opts=`echo $opts | sed 's/github.com/hub.fastgit.xyz/g'`
/usr/bin/wget ${opts}
- chmod +x
/usr/local/bin/wget
- alias wget='/usr/local/bin/wget ;此处也可以加入到 /etc/profile下,用以开机启动