Linux Tech Enthusiast
Author

Linux Tech Enthusiast

Focused on sharing practical Linux technology content, covering Linux fundamentals, applications, tools, as well as databases, operating systems, network security, and other technical knowledge.

125
Articles
0
Likes
0
Views
0
Comments
Recent Articles

Latest from Linux Tech Enthusiast

100 recent articles max
Linux Tech Enthusiast
Linux Tech Enthusiast
Jan 13, 2026 · Backend Development

How to Quickly Fix CORS Issues with Simple Nginx Configuration

This article walks through common CORS errors encountered when a frontend on http://localhost:8080 calls a backend on http://localhost:59200, explains the role of the four CORS response headers, the preflight OPTIONS request, and provides step‑by‑step Nginx configurations to resolve each case.

CORSNginxhttp-headers
0 likes · 13 min read
How to Quickly Fix CORS Issues with Simple Nginx Configuration
Linux Tech Enthusiast
Linux Tech Enthusiast
Jan 12, 2026 · Fundamentals

Why Zero‑Copy Is Critical for High‑Performance I/O on Linux

The article explains how Direct Memory Access (DMA) eliminates CPU‑bound data copies, compares traditional I/O with zero‑copy techniques such as mmap and sendfile, and shows how reducing system calls and context switches can double file‑transfer throughput while highlighting the limits of kernel cache for large files.

DMALinux I/Oasynchronous I/O
0 likes · 15 min read
Why Zero‑Copy Is Critical for High‑Performance I/O on Linux
Linux Tech Enthusiast
Linux Tech Enthusiast
Jan 11, 2026 · Operations

Comprehensive Guide to Linux Problem Diagnosis and Troubleshooting

This article presents a systematic methodology and a curated set of Linux tools—including CPU, memory, disk I/O, network, load monitoring, and flame‑graph techniques—illustrated with a real‑world nginx case study to help engineers quickly locate and resolve performance issues.

CPUFlame GraphLinux
0 likes · 18 min read
Comprehensive Guide to Linux Problem Diagnosis and Troubleshooting
Linux Tech Enthusiast
Linux Tech Enthusiast
Jan 8, 2026 · Operations

Why Bashtop Is a Must-Have Linux Resource Monitoring Tool

Bashtop is a visually appealing, terminal‑based Linux resource monitor that displays CPU, memory, processes and network bandwidth, offers sortable process lists, supports SIGKILL/SIGTERM/SIGINT signals, and can be installed via manual git build, snap, APT, DNF, Pacman, or other package managers across Ubuntu, Debian, Fedora, CentOS, and Arch, with configurable settings and help menus.

BashtopLinuxResource Monitoring
0 likes · 5 min read
Why Bashtop Is a Must-Have Linux Resource Monitoring Tool
Linux Tech Enthusiast
Linux Tech Enthusiast
Jan 3, 2026 · Fundamentals

Understanding the Key Differences Between HTTP GET and POST Requests

GET and POST are two of the eight HTTP request methods; this article explains their request‑line, header and body structures, compares their characteristics such as safety, idempotence, caching, length limits and TCP packet usage, and clarifies why HTTP distinguishes them despite sharing the same underlying protocol.

GETHTTPPOST
0 likes · 11 min read
Understanding the Key Differences Between HTTP GET and POST Requests
Linux Tech Enthusiast
Linux Tech Enthusiast
Jan 1, 2026 · Operations

40 Simple Yet Effective Linux Shell Script Examples

This article presents 40 practical Bash shell script examples ranging from a basic Hello World program to file management, conditionals, loops, functions, and system maintenance, each illustrated with clear code snippets and step‑by‑step explanations for Linux users.

Command Linebashscripts
0 likes · 22 min read
40 Simple Yet Effective Linux Shell Script Examples