1. Install a virtual machine (physical machine) You can install it on a virtual machine or a physical machine. It is recommended to install a virtual machine when you are just starting out. You can choose either version 16.04 or 18.04. The process of setting up the openwrt development environment is similar. You can choose according to your own situation. Please refer to other materials for installation tutorials, which will not be recorded here. Because I have been exposed to some Linux programs before, the blogger uses an Ubuntu 18.04 physical machine. 2. Change source In order to avoid the difficulty of downloading some packages due to network environment restrictions, we first change the source: 3. Ubuntu system related configuration 1. Open the terminal and enter the command to update the system: sudo apt-get update 2. Enter the command to install some libraries and necessary programs: sudo apt-get install gcc g++ binutils patch bzip2 flex bison make autoconf gettext texinfo unzip sharutils libncurses5-dev ncurses-term zlib1g-dev gawk asciidoc libz-dev git-core uuid-dev libacl1-dev liblzo2-dev pkg-config libc6-dev curl libxml-parser-perl ocaml-nox ②Ubuntu 18.04 version sudo apt-get install subversion build-essential libncurses5-dev zlib1g-dev gawk git ccache gettext libssl-dev xsltproc zip 4. Download and compile openwrt source code 1. Create a new folder named "openwrt" and cd to it to run the command to get the OpenWRT source code (the running time of this step depends on the network speed, it may take several hours or even crash, or as little as a few minutes): git clone https://git.lede-project.org/source.git lede 2. After the previous step of getting the OpenWRT source code is completed, you can see that a folder named "lede" is automatically generated in the "openwrt" folder. We cd to the folder and use the "ls" command to view the resources downloaded after running the OpenWRT source code; 3. cd to the "scripts" script directory and download the feeds tool: cd openwrt/lede/scripts ./feeds update -a ./feeds install -a 4. Return to the previous directory and run the command to enter the customization page: make menuconfig 5. Continuing from the previous step, after entering the customization interface, press the space bar to select the corresponding model. The hardware used in this development is Raspberry Pi 3B (abbreviated as Raspberry Pi 3B), so: ① Select Broadcom BCM27XX series for Target System; 6. Next, execute the compilation instructions. Both instructions compile the packages globally and display detailed compilation information. After a longer wait than the third step, the downloaded content is about several GB: make V=99 or make -j1 V=s 7. To supplement the previous point, the compilation process is also the resource package download process. Many packages' download links are directly linked to the external network. When we download, we will be subject to some restrictions, so we often encounter the situation where the download fails to complete after a long time of loading. At this time, we can do the following: ② Find the downloaded resource package and copy it to the "openwrt/lede/dl" directory; ③ Enter the terminal and restart the command to compile; if you encounter the same problem again, perform the same operation as above to solve the problem; 8. Compilation is completed and the OpenWRT environment is set up. This is the end of this article on how to configure the OpenWRT development environment on Ubuntu 18.04 (physical machine). For more information about configuring the OpenWRT development environment on Ubuntu 18.04, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: React and Redux array processing explanation
>>: JavaScript drag time drag case detailed explanation
Table of contents 1. Background of WAF 2. What is...
1. Introduction Containers use a sandbox mechanis...
Table of contents 1. Preparation 2. Deployment Pr...
1. Import mysql command The mysql command import ...
text-shadow Add a shadow to the text. You can add...
Table of contents 1. let keyword 1.1 Basic Usage ...
In the previous article, we introduced: MySQL8.0....
Previously, my boss asked me to make a program th...
A very common scenario in react projects: const [...
1. Download MySQL Community Server 5.6.35 Downloa...
Table of contents 1. Introduction to sysbench #Pr...
<br />Information duplication, information o...
Configuration steps 1. Check whether DNS is confi...
summary Docker-compose can easily combine multipl...
Table of contents 1. What is a design pattern? 2....