{"ftp_proxy", OPKG_OPT_TYPE_STRING, &_conf.ftp_proxy}, {"http_proxy", OPKG_OPT_TYPE_STRING, &_conf.http_proxy}, {"http_timeout", OPKG_OPT_TYPE_STRING, &_conf.http_timeout}, {"https_proxy", OPKG_OPT_TYPE_STRING, &_conf.https_proxy}, {"no_proxy", OPKG_OPT_TYPE_STRING, &...
加载配置的函数是 opkg_conf_load(). Opkg 有一个命令行参数 -f / --conf 可以明确指定配置文件,如果没有指定,那么 Opkg 使用默认的配置文件。 在v0.1.8 版本上,Opkg 在args_parse() 函数解析完毕命令行参数后,如果没有 -f / --conf 参数,那么会默认使用 /etc/opkg.conf 作为配置文件: if(!conf->c...
三、opkg 的基本命令行使用 下面的例子应该可以比较直观地看出来,一些基本的使用命令: opkg update#更新可用软件包列表opkg upgrade 软件包名1 软件包名2#升级软件包opkginstalldnsmasq#安装软件opkginstallhttp://downloads.openwrt.org/snapshots/trunk/ar71xx/packages/hiawatha_7.7-2_ar71xx.ipk# 安装软件opkg...
# 更新并确认dnsmasq-full存在 opkg update opkg find dnsmasq-full # 然后同时进行卸载+安装 opkg remove dnsmasq && opkg install dnsmasq-full 1. 2. 3. 4. 5. 安装过程会提示/etc/config/dhcp配置已经存在, 新配置文件另写为/etc/config/dhcp-xxx, 经对比原配置文件可以继续使用, 将新产生的配置文件删掉...
1.ubuntu开发环境需要的软件:sudo apt-get install gcc g++ binutils patch bzip2 flex bison make autoconf gettext texinfo unzip sharutils subversion libncurses5-dev ncurses-term zlib1g-dev gawk sudo apt-get update 2.创建目录 mkdir openwrt 3.获取OpenWrt源代码和安装包,更新 svn checkout...
opkg update //更新软件包列表 opkg install //在线安装软件包 opkg remove //移除软件包 登录Web管理界面,前提是该OpenWrt系统中要安装了Web界面,一般是Luci,登录方式与普通路由器无异,打开浏览器,输入路由器IP即可进入登录界面,OpenWrt的默认IP是192.168.1.1。到此,OpenWrt的大门已为你敞开。接下来...
root@OpenWrt:~# opkg install gdbserver_7.8-1_ar71xx.ipk Installing gdbserver (7.8-1) to root... Configuring gdbserver. 好了!安装好了,那就用用看吧。 2. 试用gdbserver 远程调试需要目标机启动 gdbserver并执行调试目标程序。在调试的过程中,gdbserver开启一个TCP服务,由开发机上的gdb连接。之后 gd...
OpenWrt源码采用git的方式管理版本,因此可以便捷地使用git checkout命令切换版本、tag等。 原因:OpenWrt的包管理器会根据当前的源码版本选择不同的上游opkg源,如果你从snapshot版本的OpenWrt开始上手,并长期使用这种版本,那么一旦后期遇到了需要opkg install某些包,可能会遇到包与你的内核版本、所用的OpenWrt源码版本不...
opkg remove //移除软件包 登录Web管理界面,前提是该OpenWrt系统中要安装了Web界面,一般是Luci,登录方式与普通路由器无异,打开浏览器,输入路由器IP即可进入登录界面,OpenWrt的默认IP是192.168.1.1。 到此,OpenWrt的大门已为你敞开。接下来,开始尝试利用OpenWrt实现更多智能应用吧,比如单号多拨榨取运营商带宽、绑定域...
1、opkg 升级 先安装证书和一些必备组件 opkg update opkg install wget ca-certificates openssl-util ca-bundle curl 换源 cp /etc/opkg/distfeeds.conf /etc/opkg/distfeeds.conf.backup sed -i 's/downloads.openwrt.org/mirrors.tuna.tsinghua.edu.cn\/lede/g' ...