How to Connect to Serial Console in Linux

How to Connect to Serial Console in Linux

Follow Embedded Learning Station, bringing you more fresh hotspots every day. 🤟Tips: This article has 2485 words, estimated reading time is 15 minutes~ Connecting to a serial port allows users to control the system without a monitor. Below is how to access and use the serial console in Linux. One of the essential elements when … Read more

Detailed Explanation of Robot Control Systems

Detailed Explanation of Robot Control Systems

What is a Robot Control System? Having only sensors and muscles is not enough for human limbs to move. On one hand, sensory signals need organs to receive and process them; on the other hand, there are no organs to send neural signals that drive muscle contraction or relaxation. Similarly, if a robot only has … Read more

Microcontroller to Embedded Linux: A Comprehensive Guide

Microcontroller to Embedded Linux: A Comprehensive Guide

Article Word Count: 3000 Content Index: ⭐⭐⭐⭐⭐ Disclaimer:This article is sourced from the internet, and the copyright belongs to the original author.If there are any copyright issues, please contact for removal. 1 8 Highly Rated Linux E-Books Recommended 2 Access Method: Reply 【714】 in the backend 1 “How to Get Started with ARM and Embedded … Read more

Learn Embedded Systems Through Project Cases

Click on the blue text to follow us 01 Preface The author has worked at an application-oriented technical university for nearly ten years. During this time, many students have learned new skills by running various examples on development boards, such as blinking an LED or driving a screen. When they successfully run these examples, they … Read more

Embedded Linux Firmware Simulation and Security Analysis with Firmadyne

Embedded Linux Firmware Simulation and Security Analysis with Firmadyne

Firmadyne is an open-source software for automated analysis of embedded Linux system security, developed by Carnegie Mellon UniversityDaming D. Chen. It supports batch detection, with the entire system including firmware crawling, root filesystem extraction, QEMU simulation execution, and vulnerability discovery. The system can be downloaded from github: https://github.com/firmadyne/firmadyne The framework is shown in the figure … Read more

Combining Raspberry Pi with AI Technologies for Embedded Linux Development

Original content by JG Education, please feel free to share with your friends. Unauthorized reproduction by other public accounts is prohibited. Micro Course Video: GPIO Channel Settings and LED Control👇 Micro Course Video: Implementation of Intrusion Alarm Function👇 Micro Course Video: Exercise – Mobile Remote Control Light👇 Some Electronic Courseware👇 Author: Wang Zheng Editor: Zhang … Read more

Quick Start Guide to Linux

Quick Start Guide to Linux

Follow the Embedded Learning Station to get more fresh hot topics Common operating systems include Linux, Unix, Windows, and Mac OS. More people are familiar with Windows, while Unix and Mac are almost unheard of, and Linux is just a name to many. Indeed, for non-professionals, Windows is sufficient for all needs, and Linux seems … Read more

Linux System Programming: Basic Concepts

Linux System Programming: Basic Concepts

Click the above“Mechanical and Electronic Engineering Technology”to follow us Host Machine The host machine (Host Machine) usually refers to the computer used for developing and compiling embedded software. The host machine is typically a high-performance desktop or laptop that runs standard operating systems such as Windows, Linux, or macOS. The main functions of the host … Read more

How to Compile C Programs in Linux

How to Compile C Programs in Linux

Article Word Count: 1400 Practical Index: ⭐⭐⭐⭐⭐ Common IDEs for compiling on Windows, while using gcc directly for compilation in Linux, is the foundation of Linux embedded programming and also a frequently asked question in embedded interviews. Command Line Compilation and Detailed Compilation Process Example code for hello.c: #include <stdio.h> int main(void) { printf("Hello world\n"); … Read more

Understanding Linux Root Filesystem Types

Understanding Linux Root Filesystem Types

The root filesystem is the first one that must be mounted during Linux startup; if the system cannot mount the root filesystem from the specified device, it will fail to start.Other filesystems can then be mounted automatically or manually. Therefore, different filesystems can coexist within a system.Different types of filesystems have different characteristics, thus they … Read more