OpenWRT上更新软件,有时候会非常慢,原因是默认的软件源使用了国外的软件源http://downloads.openwrt.org,我们可以把它替换为国内的源https://mirrors.cloud.tencent.com,经过测试,速度很很大的提升。
配置文件在/etc/opkg/distfeeds.conf,通过查找http://downloads.openwrt.org,修改为https://mirrors.cloud.tencent.com来实现,如下:
#终端上修改 /etc/opkg/distfeeds.conf 文件或者web上 system -> software -> Configure opkg,修改opkg/distfeeds.conf下方文字框,将http://downloads.openwrt.org/releases 替换为https://mirrors.cloud.tencent.com/openwrt/releases/ #也可终端上一键修改 cp /etc/opkg/distfeeds.conf /etc/opkg/distfeeds.conf.bak sed -i 's/http\:\/\/downloads.openwrt.org\//https\:\/\/mirrors.cloud.tencent.com\/openwrt\//g' /etc/opkg/distfeeds.conf #注意: 腾讯源不支持http,openwrt默认不支持https,需先安装https支持 opkg install ca-certificates wget
文章评论