原理

unraid下载插件为wget命令,在unraid调用wget时,替换github.com为国内镜像站url

操作

  1. 新建 /usr/local/bin/wget,内容如下
#!/bin/bash
opts=$@
opts=`echo $opts | sed 's/github.com/hub.fastgit.xyz/g'`
/usr/bin/wget ${opts}
  1. chmod +x /usr/local/bin/wget
  2. alias wget='/usr/local/bin/wget ;此处也可以加入到 /etc/profile下,用以开机启动