Chapter 3: The Book of Life and Death – Soul Searching and Heavenly Path Taboo

Chapter 3: The Book of Life and Death - Soul Searching and Heavenly Path Taboo

Chapter 3: The Book of Life and Death – Soul Searching and Heavenly Path Taboo [Location: Operation Realm · Scripture Pavilion · Core Consciousness Sea] Li-Nux had just recovered from the shock of the “Pending Star Map,” but the figure of Ancestor Stevens had not dissipated; instead, it became more solid. With a wave of … Read more

Detailed Explanation of Linux Core Dump

Detailed Explanation of Linux Core Dump

⌊LCG Technology Space⌉Focus on sharing technical articles on C/C++, Linux applications/drivers, audio and video, QT, and various frameworks. 👇 We sincerely recommend you to follow us👇 What scenarios produce Core Dumps How to use Linux Core Dumps Enable core dump functionality Modify the path and format for saving core files Use gdb to debug core … Read more

Advanced Core Dump Debugging Commands in Practice: gdb -x

-begin- The define command can encapsulate quick commands for step-by-step debugging, but during regression testing or version iterations, multiple core dump files (more than 10) often arise. Analyzing them one by one not only takes time but may also overlook common issues.The gdb -x command can execute debugging operations in batches through scripts, traversing all … Read more

Emergency Guide for Linux System Crashes: A Complete Practical Process from Core Dump Configuration to GDB Debugging

Emergency Guide for Linux System Crashes: A Complete Practical Process from Core Dump Configuration to GDB Debugging

“The program suddenly freezes, and the log only reports ‘Segmentation fault’” “The kernel directly panics while running multiple threads” — Engineers working on Linux development have almost all encountered such “crash moments”. Facing on-site issues without debugging information is like a blind person trying to touch an elephant, and core dumps are the “key evidence” … Read more

GDB Debugging Method (10) – Core Dump

GDB Debugging Method (10) - Core Dump

Technical experience sharing, welcome to follow and provide guidance In the process of system development, the version deployed on the device is usually the release version, which generally does not contain debugging information. When issues arise, how do we troubleshoot? In fact, Linux provides the core dump feature, which generates a core file when a … Read more

Linux Backup Strategies and Tool Guide

Linux Backup Strategies and Tool Guide

In Linux systems, backing up data is an important step to ensure system security and data integrity. Whether you are a personal user or a system administrator, a reliable backup strategy and tools are needed to protect data. This article will introduce three commonly used Linux backup tools: rsync, tar, and dump, and provide practical … Read more

MCoreDump – Embedded System Core Dump Component | Technical Collection

MCoreDump - Embedded System Core Dump Component | Technical Collection

Open Source Repository Link:https://github.com/Rbb666/MCoreDump Platforms verified for this component: Renesas RA6M3 (Cortex-M4), Renesas RA6M4 (Cortex-M33) are both operational, for more platforms please follow the open-source repository. Table of Contents Component Introduction Main Features Application Scenarios Supported Architectures System Architecture Directory Structure Configuration Options Quick Start API Reference Main Functions Detailed Explanation of Output Modes Advanced … Read more

A Detailed Explanation of Linux Core Dumps: From Basics to Practical Applications (Part 2)

A Detailed Explanation of Linux Core Dumps: From Basics to Practical Applications (Part 2)

Hello everyone, welcome to Lixin Embedded. In Linux development, core dumps are powerful tools for debugging program crashes. However, on devices with limited storage space, core dump files that can be several megabytes in size can take up a lot of space. In the previous article, we discussed the principles and generation mechanisms of core … Read more

Analyzing ESP32 Core Dumps

Analyzing ESP32 Core Dumps

1. In my previous article, I wrote an introduction to the ESP32, and I think it is necessary to write this article, which mainly focuses on analyzing core dumps. This is similar to crash analysis in Android and Linux systems; it is interesting yet challenging. When we write code, we inevitably encounter some core dump … Read more

The Process of Collecting MySQL Core Dump Stack Information

The Process of Collecting MySQL Core Dump Stack Information

Whether for databases or applications, when issues arise, knowing the exception stack information can greatly assist in identifying the root cause and fundamentally resolving the problem. The stack information from MySQL can similarly aid in problem-solving. This article from the technical community, 《MySQL Fault Reporting Core Dump Collection Process》 introduces the process of collecting core … Read more