How to configure the OpenWRT development environment on Ubuntu 18.04 (physical machine)

How to configure the OpenWRT development environment on Ubuntu 18.04 (physical machine)

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:
①Open "Software & Update";
②Change the original "Chinese server" to "mirrors.aliyun.com";
③Enter password;
④ After the source change is completed, return to the terminal;

insert image description here

insert image description here
insert image description here
insert image description here
insert image description here

3. Ubuntu system related configuration

1. Open the terminal and enter the command to update the system:

sudo apt-get update 

insert image description here

2. Enter the command to install some libraries and necessary programs:
①Ubuntu 16.04 version

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 

insert image description here

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 

insert image description here

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;

insert image description here

3. cd to the "scripts" script directory and download the feeds tool:

cd openwrt/lede/scripts
./feeds update -a
./feeds install -a 

insert image description here
insert image description here

4. Return to the previous directory and run the command to enter the customization page:

 make menuconfig 

insert image description here

insert image description here

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;
②Subtarget (main control chip) select BCM2710 boards (64 bit);
③Select Raspberry Pi 2B-1.2/3B/38+/3CM in Target Profile;
④ Select "exit" to the right and press Enter, and select "YES" in the pop-up box;

insert image description here

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 

insert image description here

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:
① Press and hold the "Ctrl" key while clicking the resource package link. The link will automatically open in the browser and start downloading the resource package. At this time, we can press "Ctrl" + "C" to interrupt the compilation process in the terminal;

insert image description here

insert image description here

② Find the downloaded resource package and copy it to the "openwrt/lede/dl" directory;

insert image description here

③ 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;

insert image description here

8. Compilation is completed and the OpenWRT environment is set up.

insert image description here

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:
  • Detailed explanation of setting up a Python development environment from scratch on Ubuntu
  • Configuring Ruby on Rails framework and RubyMine IDE development environment on Ubuntu
  • Install the Go language development environment and editor configuration in Ubuntu
  • Sharing the process of building a Nodejs development environment in Ubuntu
  • OpenWrt15.05 network connection settings in Vmware
  • Vmware installation OpenWrt15.05 virtual machine tutorial

<<:  React and Redux array processing explanation

>>:  JavaScript drag time drag case detailed explanation

Recommend

Analysis of the principle of Nginx using Lua module to implement WAF

Table of contents 1. Background of WAF 2. What is...

Docker practice: Python application containerization

1. Introduction Containers use a sandbox mechanis...

Detailed explanation of how to quickly build a blog website using Docker

Table of contents 1. Preparation 2. Deployment Pr...

MySQL 4 methods to import data

1. Import mysql command The mysql command import ...

Implementation of CSS text shadow gradually blurring effect

text-shadow Add a shadow to the text. You can add...

Based on JavaScript ES new features let and const keywords

Table of contents 1. let keyword 1.1 Basic Usage ...

Detailed tutorial on compiling and installing MySQL 8.0.20 from source code

In the previous article, we introduced: MySQL8.0....

svg+css or js to create tick animation effect

Previously, my boss asked me to make a program th...

React tips teach you how to get rid of hooks dependency troubles

A very common scenario in react projects: const [...

Graphic tutorial for installing MySQL 5.6.35 on Windows 10 64-bit

1. Download MySQL Community Server 5.6.35 Downloa...

Introduction to the use of MySQL performance stress benchmark tool sysbench

Table of contents 1. Introduction to sysbench #Pr...

Web2.0: Causes and Solutions of Information Overload

<br />Information duplication, information o...

An example of installing MySQL on Linux and configuring external network access

Configuration steps 1. Check whether DNS is confi...

How to control the startup order of docker compose services

summary Docker-compose can easily combine multipl...

Singleton design pattern in JavaScript

Table of contents 1. What is a design pattern? 2....