Ansible Built-in Module: Package

Ansible Built-in Module: Package

The package module of ansible.builtin is used to manage software packages on Linux-based systems. It is a generic module that supports multiple package managers (such as apt, yum, dnf, zypper, etc.) and can install, update, and remove packages. Its functionality is similar to the ansible.builtin.dnf built-in module, but it supports more package management tools, making … Read more

Is There a Crisis at 35 for Linux C/C++ or Embedded Development?

Is There a Crisis at 35 for Linux C/C++ or Embedded Development?

Follow and star our public account for exciting content Source: Embedded Linux The questions are as follows: I am currently 25 years old, graduated from a non-211 university. I work in Shenzhen, doing embedded development, and my salary is currently average. After reading many blogs written by seniors, I find them great. I have some … Read more

Linux Responds to the US Entity List: Can Huawei, ZTE, and Others Breathe a Sigh of Relief?

Linux Responds to the US Entity List: Can Huawei, ZTE, and Others Breathe a Sigh of Relief?

Two days ago, the Linux Foundation finally responded directly to the export controls of the US entity list, providing everyone with a sense of relief. This news has been eagerly awaited by those in the tech community for a year… A year ago, the US Department of Commerce placed some Chinese tech giants on the … Read more

Linux Application Auto-Start Fails? A Comprehensive Guide to Avoiding Pitfalls with Systemd in 5 Steps!

Linux Application Auto-Start Fails? A Comprehensive Guide to Avoiding Pitfalls with Systemd in 5 Steps!

IntroductionAs a developer, have you ever encountered a situation where you configured your application to automatically restart after a crash, but the service just won’t come back up? The logs only show a cold <span>status=217/USER</span>, leaving you puzzled? Don’t panic! Today, we will provide a hands-on guide to help you solve the “mystical” issue of … Read more

In-Depth Analysis of the Linux lsof Command: Easily Identify Open Files in the System

In-Depth Analysis of the Linux lsof Command: Easily Identify Open Files in the System

Abstract: It is a command-line utility used to list information about files opened by various processes. In Linux, everything is a file (pipes, sockets, directories, devices, etc.). Therefore, by using lsof, you can obtain information about any open file. lsof stands for ‘list open files’. If you think of the lsof command as ‘ls + … Read more

Practical Guide to High-Risk Port Control Strategies and Firewall Configuration in Linux

Practical Guide to High-Risk Port Control Strategies and Firewall Configuration in Linux

In today’s rapidly accelerating digital transformation, the Linux operating system, as the mainstream OS for servers and edge computing devices, directly impacts the protection of enterprise data assets and user privacy. This guide will present a practical security hardening solution from the core dimensions of security reinforcement, combined with code examples, focusing on two key … Read more

A 10-Year Operations Veteran’s Linux Command Arsenal

A 10-Year Operations Veteran's Linux Command Arsenal

Click the blue “Most Programmer” to follow me! Add a “star“, every day at 18:03 to learn technology together Redirection Standard input stdin: code is 0, use < or <<Standard output stdout: code is 1, use > or >>Standard error output stderr: code is 2, use 2> or 2>>Special syntax: write both stdout and stderr … Read more

Linux Security: Easily Scan Your Servers for Rootkits

Linux Security: Easily Scan Your Servers for Rootkits

Open-source tools like Linux Malware Detect and Chkrootkit can alert you to unwanted visitors on your server. Translated from “Linux Security: Scan Your Servers for Rootkits With Ease” by Jack Wallen. Linux is one of the most secure operating systems on the planet. However, nothing is absolutely secure, and if a server is connected to … Read more

Comprehensive Guide to Linux Command Delimiters: A Veteran’s Insights on Command Line Mastery

Comprehensive Guide to Linux Command Delimiters: A Veteran's Insights on Command Line Mastery

As a Linux operations engineer, mastering command delimiters is a key skill to enhance work efficiency. This article will detail commonly used command delimiters in the CentOS7 system and their usage techniques, helping you operate the command line with ease. 01 Basic Delimiters Semicolon (;) and Logical AND (&&) 1. Semicolon (;) – Execute sequentially … Read more