Buildroot vs Yocto: Who is the True Star of Embedded Package Management?

Buildroot vs Yocto: Who is the True Star of Embedded Package Management?

As the complexity of embedded systems increases, build systems are no longer just about loading the kernel and rootfs. Buildroot and the Yocto Project, as two major representatives of build software, re-evaluate package management, showcasing the differences in two types of development thinking. This article will analyze the differences between Buildroot and Yocto in package … Read more

Why Has Linux Package Management Become a Nightmare That Everyone Wants to Escape?

Why Has Linux Package Management Become a Nightmare That Everyone Wants to Escape?

For some things, I just roll my eyes, remain silent, and think, “What the hell are you talking about? I can’t understand!”. In my mind, Linux package management has always been a highlight. With just one set of commands, you can set up a complete development environment and get a usable web system. How wonderful … Read more

Package Management Module FetchContent in CMake

Package Management Module FetchContent in CMake

Background Introduction In the realm of C++ package management tools, aside from Microsoft’s vcpkg, there doesn’t seem to be a particularly famous package manager. CMake actually provides basic package management functionality. By using the <span>FetchContent</span> module commands, you can download the source code or other files that your project depends on. Basic Usage <span>FetchContent_Declare</span> command … Read more

Installing Software Packages on OpenWRT

Installing Software Packages on OpenWRT

The native OpenWRT does not come with some additional software packages (i.e., plugins) installed. Below is a record of how to install software packages on the OpenWRT platform for IMX8 and use them in the LuCI interface service options. The native LuCI interface does not have service options. 1. Change the software source in /etc/opkg/distfeeds.conf … Read more

Detailed Configuration of Embedded Linux Buildroot Environment: Building an Efficient and Stable Development Platform

Detailed Configuration of Embedded Linux Buildroot Environment: Building an Efficient and Stable Development Platform

Detailed Configuration of Embedded Linux Buildroot Environment: Building an Efficient and Stable Development Platform Introduction Buildroot is a powerful tool for building embedded Linux systems, enabling developers to quickly create small and efficient embedded Linux systems. This article will provide a detailed guide on how to use Buildroot to construct a customized embedded Linux development … Read more

Quick Start – Summary of Common Linux Commands

Quick Start - Summary of Common Linux Commands

Linux Server System Information # Display basic system information uname -a # View kernel version uname -r # Display information about the distribution – detailed information about the operating system lsb_release -a # Linux version cat /etc/issue cat /etc/os-release more /etc/redhat-release hostnamectl cat /proc/version # CPU information cat /proc/cpuinfo more /proc/cpuinfo | grep "model name" … Read more

Comprehensive List of Common Linux Commands

Comprehensive List of Common Linux Commands

1. Common Linux Commands and Their Meanings pwd: print work directory, prints the current directory and displays the absolute path of the current working directory. ps: process status, similar to the Windows Task Manager, commonly used parameters -auxf, ps -auxf are used to display process status. df: disk free, displays information about available disk space … Read more

OpenWRT Software Sources

OpenWRT Software Sources

The official OpenWRT mirror site for downloading OpenWRT is: URL: https://downloads.openwrt.org/This is the main site for OpenWRT, providing all official versions of firmware and packages. It is the primary source for obtaining the latest stable versions, development versions (snapshots), and historical versions. The official OpenWRT GitHub repository: URL: https://github.com/openwrt/openwrtAlthough primarily used for code storage and … Read more

Mastering Linux! Easily Configure yum and vim with a Single Command

Mastering Linux! Easily Configure yum and vim with a Single Command

Linux | Red Hat Certified | IT Technology | Operations Engineer 👇 Join our technical exchange QQ group with the note 【Public Account】 for faster approval 1. The Powerful Package Manager yum in Linux 1. Background and Software Ecosystem of yum (1) Evolution of Software Management in Linux In early Linux systems, software installation required … Read more

C++ Cross-Platform Package Manager: Microsoft Community Builds an Efficient Ecosystem | Open Source Daily No.562

C++ Cross-Platform Package Manager: Microsoft Community Builds an Efficient Ecosystem | Open Source Daily No.562

microsoft/vcpkghttps://github.com/microsoft/vcpkg Stars: <span>24.3k</span> License: <span>MIT</span> vcpkg is a cross-platform C/C++ package management tool that supports Windows, Linux, and MacOS, maintained by Microsoft and the C++ community. Easy integration with various build systems Control over dependency versions Support for packaging and publishing custom packages Reuse of binary artifacts Enables offline scenarios and asset caching WooooDyy/LLM-Agent-Paper-Listhttps://github.com/WooooDyy/LLM-Agent-Paper-List Stars: … Read more