为openwrt编译xd-h3c】的更多相关文章

1,首先安装ubuntu系统,这里安装的是虚拟机 2,安装openwrt编译所需环境  apt-get install build-essential libncures5-dev gawk libssl-dev subversion git uzip    在安装之前运行了下 apt-get update 在安装时出现了“/var/lib/dpkg/local”的错误  rm了这个文件 3,在home目录下mkdir openwrt了一个文件目录,然后运行 git clone git://gi…
OpenWRT 编译 error GNU libiconv not in use but included iconv.h is from... 编译的时候碰到一个常见的错误,但是却在一个陌生的地方爆出来: gconvert.c:55:2: error: #error GNU libiconv not in use but included iconv.h is from libiconv google 了一下资料还挺多,总之就是没搜到 OpenWRT 相关的,于是各种想法都有.后来才发现确实是…
OpenWrt编译简单过程1,OpenWrt编译环境准备sudo apt-get install gcc g++ binutils patch bzip2 flex bison make autoconf gettext texinfo unzip sharutils subversion libncurses5-dev ncurses-term zlib1g-dev 2,下载OpenWrtbarkfile or trunk 源码mkdir openwrt && cd openwrtsvn…
参考书目<B智能路由开发指南> 目标:搭建一个OpenWrt编译环境,可以同时在家里和公司使用. [2018-09-13] 刚开始想用自己的电脑共享远程桌面,但不知道什么原因搞不定,所以干脆上阿里云弄了个服务器(试用以后发现比自己电脑还方便).ubuntu16,amd64位环境. 感受:阿里云服务器跟真实的服务器用起来几乎没差别,真特么好用. [2018-09-22~23] 照着书上下载源码(github.com/openwrt/). 因为我也是新手,所以弄了个svn,把代码保存起来,万一啥时…
OpenWrt编译后会生成多个bin文件,比如 openwrt-ar71xx-generic-tl-wr841nd-jffs2-factory.bin 8126464 openwrt-ar71xx-generic-tl-wr841nd-jffs2-sysupgrade.bin    4980740openwrt-ar71xx-generic-tl-wr841nd-squashfs-factory.bin 8126464openwrt-ar71xx-generic-tl-wr841nd-squas…
在办公室编译OpenWrt,费时很久,原因有两个. 一是办公室网络环境比较糟糕,经常断线不说,很多技术网站间歇性的连不上,不是撞到404就是DNS解析失败等. 二是初次编译OpenWrt时需要从网上下载大量文件,比如build_dir下的文件就有3.4G之多. zlf@zlf:~/openwrt_mtk/openwrt-2.6.36$ du -sh build_dir/ 3.4G     build_dir/ zlf@zlf:~/openwrt_mtk/openwrt-2.6.36$ ls ./…
之前自己编译OpenWRT的一些记录,现在搬上来.简单介绍了编译环境的准备,编译过程,以及一些注意事项. 准备工作 本人是在Ubuntu环境下编辑的,首先安装编译所需要的组件包: sudo apt-get update sudo apt-get upgrade sudo apt-get install gcc sudo apt-get install g++ sudo apt-get install binutils sudo apt-get install patch sudo apt-get…
Install git , to conveniently download the OpenWrt source code, and build tools to do the cross-compilation process: apt-get update sudo apt-get install git-core build-essential libssl-dev libncurses5-dev unzip Some feeds might not available over git…
无需自己同步官方openwrt源码,采用Lean的openwrt源码是极好的,感谢Lean长久的坚持. https://github.com/coolsnowwolf/lede 准备工作 注意 不要用 root 用户 git 和编译!!! 国内用户编译前最好准备好梯子 默认登陆IP 192.168.1.1, 密码 password Ubuntu新建账户 需要准备一个干净的Ubuntu,不能用root账户,最好在国外.我用的是阿里云的香港轻量,ubuntu 18.04. 创建用户:vagrant为…
本文主要参考:http://macbruins.com/2011/05/08/downloading-sources-for-building-openwrt/ OpenWrt系统在buildroot下编译,OpenWrt编译系统主要可由核心(core)与扩展软件包(Feeds)组成.在编译前首先获取所有软件包包括内核的源与配置文件(这里的源是软件包的源码源src url,在编译时候根据这里的地址去下载) 首先buildroot下载核心及核心组件的源与配置文件(Makefile与patchs等)…