openwrt不支持opkg的解决办法

opkg是openwrt的插件安装命令,类似Ubuntu上的apt-get或者centos上的yum。
好多采用openwrt系统的设备,最后都把opkg裁剪掉了,如果拿到一个设备又想用opkg安装网络上下载到的ipk包,应该怎么办呢?
其实也不是特别麻烦。
1 找到对应的openwrt版本。
openwrt的版本不多就这么几个

https://archive.openwrt.org/backfire/
https://archive.openwrt.org/attitude_adjustment/
https://archive.openwrt.org/barrier_breaker/
https://archive.openwrt.org/chaos_calmer/

后面的1407和1505版本算是用比较流行的。在1505之后,OP和lede合并了,出了两个版本1701和1806,感兴趣可以去看看

https://archive.openwrt.org/releases/

2 下载编译。
不多说了,网上都是教程。
3 opkg移植。
其实就是拷贝,opkg编译生成的路径,我的是下面这个:

build_dir/target-mipsel_24kec+dsp_uClibc-0.9.33.2/opkg-unsigned/opkg-9c97d5ecd795709c8584e972bfdf3aee3a5b846d/ipkg-install/usr/bin

里面的名字是这个opkg-cl,没关系,拷贝的到设备的/bin/下重命名一下就好了。

4 opkg配置文件
需要在设备的/etc/下建立对应的配置文件:
opkg.conf

dest root /
dest ram /tmp
lists_dir ext /var/opkg-lists
option overlay_root /overlay

这样就大功告成了。
如果想更新opkg的源,可以参考这个

https://blog.csdn.net/lixuande19871015/article/details/46814173

你可能感兴趣的:(openwrt)