Tagged articles
625 articles
Page 4 of 7
Code Ape Tech Column
Code Ape Tech Column
Nov 30, 2021 · Operations

Understanding Flame Graphs for Java Performance Analysis

This article introduces flame graphs, explains their visual characteristics and how they help identify performance bottlenecks in Java applications, and provides practical guidance on generating them using Perl scripts and shell commands to process jstack and perf outputs.

Shellflamegraphjstack
0 likes · 9 min read
Understanding Flame Graphs for Java Performance Analysis
Liangxu Linux
Liangxu Linux
Nov 23, 2021 · Operations

Master nohup: Run Linux Commands in Background and Capture Output

This guide explains how the nohup command lets you run programs that ignore hang‑up signals, redirects their output to nohup.out or a specified file, and keeps them running after you close the terminal, with practical syntax and examples.

Shellbackground executioncommand-line
0 likes · 4 min read
Master nohup: Run Linux Commands in Background and Capture Output
Liangxu Linux
Liangxu Linux
Oct 28, 2021 · Operations

Master Linux ‘at’ Command: Schedule One‑Time Tasks Easily

This guide explains how to install, configure, and use the Linux at command for one‑off task scheduling, covering interactive and non‑interactive usage, time expressions, job management with atq/atrm, and differences from cron, all with practical code examples.

LinuxShellat command
0 likes · 8 min read
Master Linux ‘at’ Command: Schedule One‑Time Tasks Easily
Sohu Tech Products
Sohu Tech Products
Oct 27, 2021 · Operations

Linux Command Cheat Sheet: Basic Operations, System Management, and Monitoring

This article provides a comprehensive collection of essential Linux command-line instructions covering system shutdown and reboot, hardware and process inspection, file manipulation, networking utilities, performance monitoring, and common administrative tasks, all organized for quick reference by developers and system administrators.

LinuxNetworkingPerformance Monitoring
0 likes · 20 min read
Linux Command Cheat Sheet: Basic Operations, System Management, and Monitoring
ITPUB
ITPUB
Oct 21, 2021 · Operations

Understanding the Differences Between su and sudo on Linux: When and How to Use Them

This article clarifies the distinct purposes and usage patterns of the Linux commands su and sudo, explains their parameters such as '-' and '-c', demonstrates user creation, password setting, environment differences between login and non‑login shells, and shows how to configure sudo privileges safely.

LinuxShellSudo
0 likes · 15 min read
Understanding the Differences Between su and sudo on Linux: When and How to Use Them
Liangxu Linux
Liangxu Linux
Oct 7, 2021 · Information Security

How a 13‑Character Fork Bomb Crashes Linux and How to Stop It

The article explains the 13‑character fork bomb created by Jaromil in 2002, shows how it exhausts system resources by recursively forking processes, demonstrates its impact on a cloud VM, and provides practical prevention methods using ulimit and limits.conf.

DoSLinuxShell
0 likes · 6 min read
How a 13‑Character Fork Bomb Crashes Linux and How to Stop It
MaGe Linux Operations
MaGe Linux Operations
Oct 5, 2021 · Cloud Native

Unlock Advanced kubectl Tricks for Faster Kubernetes Management

This article shares a collection of powerful kubectl commands and tips—including API debugging, status‑based pod filtering and deletion, node‑specific pod listing, distribution counting with awk, and proxy usage—to help experienced Kubernetes users work more efficiently and avoid manual API client coding.

CLICluster ManagementDevOps
0 likes · 7 min read
Unlock Advanced kubectl Tricks for Faster Kubernetes Management
Liangxu Linux
Liangxu Linux
Sep 12, 2021 · Operations

Quickly Locate Duplicate Files on Linux with Find and dupeGuru

This guide shows three practical ways to identify duplicate files on Linux—using an advanced find‑pipeline, installing the cross‑platform dupeGuru utility, and a step‑by‑step breakdown of each command in the pipeline, complete with code examples and explanations.

LinuxShelldupeguru
0 likes · 8 min read
Quickly Locate Duplicate Files on Linux with Find and dupeGuru
政采云技术
政采云技术
Aug 24, 2021 · Frontend Development

Automating WeChat Mini‑Program Build and Deployment with a VSCode Extension

This article details how to create a VSCode plugin that automates the entire workflow of building, versioning, and publishing a WeChat mini‑program using uni‑app, shell commands, Git operations, Dubbo service calls, and the WeChat DevTools CLI, providing code examples and step‑by‑step analysis.

DubboGitShell
0 likes · 17 min read
Automating WeChat Mini‑Program Build and Deployment with a VSCode Extension
Laravel Tech Community
Laravel Tech Community
Aug 14, 2021 · Fundamentals

File Splitting with split and Merging with cat on Linux

This guide explains how to use the Linux split command to divide large files into smaller parts and the cat command to concatenate those parts back together, including syntax, practical examples, and help options for efficient file transfer and management.

CATLinuxShell
0 likes · 7 min read
File Splitting with split and Merging with cat on Linux
dbaplus Community
dbaplus Community
Aug 2, 2021 · Fundamentals

Master Linux History Command: Practical Tips to Boost Shell Efficiency

This guide explains how the Linux history mechanism works, shows essential commands for viewing, filtering, and replaying past commands, demonstrates timestamping, adjusting record limits, changing the history file, disabling logging, and shares a hidden trick for keeping sensitive commands out of the log.

BashLinuxShell
0 likes · 10 min read
Master Linux History Command: Practical Tips to Boost Shell Efficiency
Liangxu Linux
Liangxu Linux
Jul 21, 2021 · Fundamentals

Essential Linux Commands: Quick Reference for Everyday Tasks

A concise collection of common Linux commands covering file management, user administration, permissions, networking, and editor shortcuts, presented with clear examples and explanations for quick learning and reference.

PermissionsShellSysadmin
0 likes · 7 min read
Essential Linux Commands: Quick Reference for Everyday Tasks
Liangxu Linux
Liangxu Linux
Jul 19, 2021 · Fundamentals

Understanding Shell Exit Codes: How $? Reveals Command Success or Failure

This article explains how a command’s exit status indicates success or failure in Unix shells, describes the meaning of common return codes, introduces the special $? variable, and provides a comprehensive Bash script example demonstrating various exit scenarios and custom status handling.

BashScriptingShell
0 likes · 4 min read
Understanding Shell Exit Codes: How $? Reveals Command Success or Failure
Liangxu Linux
Liangxu Linux
Jul 18, 2021 · Fundamentals

Master Linux Aliases: Simplify Commands and Boost Productivity

This guide explains how Linux aliases work, shows how to create temporary and permanent shortcuts for long commands like rsync, demonstrates listing and removing aliases, and provides step‑by‑step instructions for storing aliases in ~/.bashrc or a separate file.

BashLinuxShell
0 likes · 5 min read
Master Linux Aliases: Simplify Commands and Boost Productivity
Code Ape Tech Column
Code Ape Tech Column
Jul 11, 2021 · Fundamentals

Essential Open‑Source Terminal Tools for Developers

This article introduces a curated collection of open‑source terminal utilities—including Windows Terminal, iTerm2, oh‑my‑zsh, powerline, file managers, command‑enhancement tools, and other handy programs—explaining their key features and providing links so developers can boost productivity across macOS, Linux, and Windows environments.

Shellcommand-linedeveloper
0 likes · 7 min read
Essential Open‑Source Terminal Tools for Developers
MaGe Linux Operations
MaGe Linux Operations
Jul 10, 2021 · Operations

10 Essential Linux Commands Every Developer Should Master

Discover ten indispensable Linux commands—from process inspection with pgrep to file splitting with split—complete with explanations, practical examples, and code snippets, empowering developers and system administrators to harness Linux’s powerful capabilities for efficient workflow and system management.

ShellUnixcommand-line
0 likes · 10 min read
10 Essential Linux Commands Every Developer Should Master
Top Architect
Top Architect
Jul 9, 2021 · Operations

Essential Open‑Source Terminal Tools for Developers

This guide presents a curated list of powerful open‑source terminal utilities—including Windows Terminal, iTerm2, oh‑my‑zsh, file managers, command enhancers, and other handy tools—designed to boost developer productivity and give a feeling of being a 10× programmer.

Shellcommand-linedeveloper tools
0 likes · 8 min read
Essential Open‑Source Terminal Tools for Developers
Liangxu Linux
Liangxu Linux
Jun 27, 2021 · Fundamentals

Master Linux Aliases: Turn Long Commands into Simple Shortcuts

Learn how to create temporary and permanent Linux aliases to replace lengthy commands, streamline file synchronization with rsync, manage aliases via the alias and unalias commands, and store them in dedicated files for persistent shell customization.

BashLinuxShell
0 likes · 5 min read
Master Linux Aliases: Turn Long Commands into Simple Shortcuts
Efficient Ops
Efficient Ops
Jun 22, 2021 · Operations

Essential Linux Commands Every Sysadmin Should Master

This article provides a comprehensive reference of Linux commands, explaining their purpose and usage across categories such as file management, system monitoring, networking, user administration, and process control, helping readers efficiently manage and troubleshoot Linux systems.

LinuxShellUnix
0 likes · 17 min read
Essential Linux Commands Every Sysadmin Should Master
21CTO
21CTO
Jun 19, 2021 · Fundamentals

Unlocking Linux: Inside the Kernel, Shell, Filesystem & Disk Management

This article explains the four core parts of a Linux system—kernel, shell, filesystem and applications—covering memory and process management, VFS architecture, file types, directory hierarchy, partitioning, mounting, links and essential command‑line tools.

FilesystemKernelLinux
0 likes · 33 min read
Unlocking Linux: Inside the Kernel, Shell, Filesystem & Disk Management
Liangxu Linux
Liangxu Linux
Jun 14, 2021 · Operations

7 Essential Everyday Shell Scripts for Linux System Administration

This article presents seven practical Bash scripts that help Linux administrators quickly gather system status, back up MySQL databases, monitor services, scan network hosts, manage user passwords, and verify MySQL replication, each accompanied by clear code examples and usage instructions.

BackupShellSysadmin
0 likes · 10 min read
7 Essential Everyday Shell Scripts for Linux System Administration
Liangxu Linux
Liangxu Linux
Jun 14, 2021 · Operations

How to Split and Merge Large Files on Linux Using split and cat

This guide explains why large files often need to be divided for network transfer on Linux, and provides step‑by‑step commands and options for using the split utility to cut files into smaller pieces and the cat command to recombine them efficiently.

CATFile SplittingLinux
0 likes · 6 min read
How to Split and Merge Large Files on Linux Using split and cat
Java Architect Essentials
Java Architect Essentials
Jun 4, 2021 · Fundamentals

Comprehensive Linux Fundamentals and Command Reference Guide

This extensive guide covers Linux fundamentals, including system overview, file system hierarchy, kernel components, user and kernel space, command-line basics, essential commands for file management, networking, security, scripting, and practical examples, providing a thorough introduction for beginners and intermediate users alike.

ShellSystem Administrationcommands
0 likes · 59 min read
Comprehensive Linux Fundamentals and Command Reference Guide
Python Programming Learning Circle
Python Programming Learning Circle
Jun 4, 2021 · Operations

Essential CLI Tools for Productivity and System Management

This article presents a curated list of high‑frequency and low‑frequency command‑line utilities—including fish shell, Starship, z, fzf, fd, ripgrep, htop, glances, Homebrew, asciinema, diff‑tools, tree, bat, httpie, tldr, exa, litecli, mas, and ncdu—explaining their features, installation, and practical usage to boost developer efficiency across Linux and macOS environments.

Shellterminaltools
0 likes · 18 min read
Essential CLI Tools for Productivity and System Management
ITFLY8 Architecture Home
ITFLY8 Architecture Home
Jun 3, 2021 · Operations

21 Essential Linux Commands Every Developer Should Master

This comprehensive guide lists the 21 most frequently used Linux commands—from navigating directories and managing files to searching, text processing, compression, system shutdown, and process control—providing a handy cheat‑sheet for developers and system administrators alike.

LinuxShellSystem Administration
0 likes · 13 min read
21 Essential Linux Commands Every Developer Should Master
Liangxu Linux
Liangxu Linux
May 30, 2021 · Fundamentals

Mastering Shell Special Parameters: $*, $@, $#, $$, $! with Real Examples

This article explains the purpose and behavior of key shell special parameters—$*, $@, $#, $$, and $!—through three practical scripts that demonstrate expanding positional arguments, counting arguments, and accessing process IDs, complete with code snippets and expected output.

BashScriptingShell
0 likes · 4 min read
Mastering Shell Special Parameters: $*, $@, $#, $$, $! with Real Examples
Liangxu Linux
Liangxu Linux
May 25, 2021 · Operations

How to Accurately Measure Directory Sizes on Linux with du

This guide explains why the ls command shows a fixed 4 KB size for directories, introduces the du (disk usage) utility, and provides step‑by‑step examples for obtaining total, per‑directory, per‑file, and cumulative size information using various du options.

LinuxShellcommand-line
0 likes · 8 min read
How to Accurately Measure Directory Sizes on Linux with du
Efficient Ops
Efficient Ops
May 12, 2021 · Operations

7 Ready‑to‑Use Python & Shell Scripts to Supercharge Your Ops

This article shares a curated collection of ready‑to‑run Python and Shell scripts—including Enterprise WeChat alerts, FTP and SSH clients, SaltStack and vCenter utilities, SSL certificate checks, weather notifications, SVN backups, Zabbix password monitoring, local YUM mirroring, and high‑load detection—complete with full source code and usage notes to help engineers automate routine tasks and boost operational efficiency.

OpsPythonShell
0 likes · 30 min read
7 Ready‑to‑Use Python & Shell Scripts to Supercharge Your Ops
Efficient Ops
Efficient Ops
May 10, 2021 · Operations

Essential Linux Commands for System Monitoring and Regex Toolkit

This article compiles a comprehensive set of Linux shell commands for server health checks—from file cleanup and process inspection to network, disk, and memory monitoring—followed by a handy collection of regular expressions for common validation tasks.

LinuxShellcommands
0 likes · 13 min read
Essential Linux Commands for System Monitoring and Regex Toolkit
Liangxu Linux
Liangxu Linux
May 10, 2021 · Operations

Master Linux ‘time’ Command: Hidden Tricks, Metrics, and Performance Tips

Learn how to effectively use the Linux time command—including its basic output, the meaning of real, user, and sys values, differences between shell built‑ins and GNU time, and advanced options like -p, -v, -o, -f—to accurately measure program performance and diagnose bottlenecks.

LinuxShellperformance measurement
0 likes · 10 min read
Master Linux ‘time’ Command: Hidden Tricks, Metrics, and Performance Tips
21CTO
21CTO
May 6, 2021 · Fundamentals

Master the Linux Terminal: Essential Commands Every Developer Needs

This guide introduces the most important Linux terminal commands—pwd, ls, cd, mkdir, man, touch, nano, and rm—explaining their usage, syntax, and practical tips so developers can navigate, manage files, and work confidently in a shell environment.

LinuxShellbasics
0 likes · 6 min read
Master the Linux Terminal: Essential Commands Every Developer Needs
FunTester
FunTester
Apr 28, 2021 · Fundamentals

Convert JSON to CSV with jq: A Step‑by‑Step Tutorial

This tutorial demonstrates how to use the jq command‑line tool to extract an array of objects from a JSON file, reshape the data into a two‑column format, and output it as properly formatted CSV, including handling of quoting and raw output options.

CSVJSONShell
0 likes · 4 min read
Convert JSON to CSV with jq: A Step‑by‑Step Tutorial
Efficient Ops
Efficient Ops
Apr 25, 2021 · Operations

Master Linux Command History: 10 Powerful Tips to Boost Efficiency

This article explains how Linux shells store command history in .bash_history, shows basic and advanced usage of the history command—including listing, searching, repeating, timestamping, and configuring history size—and provides practical tricks for auditing, backup, and even disabling history for security purposes.

BashLinuxShell
0 likes · 11 min read
Master Linux Command History: 10 Powerful Tips to Boost Efficiency
Liangxu Linux
Liangxu Linux
Apr 21, 2021 · Fundamentals

15 Essential Linux Command‑Line Tricks to Boost Your Productivity

This article presents a collection of fifteen practical Linux command‑line techniques—including fast file clearing, large file generation, secure disk wiping, process timing, log monitoring, timestamp conversion, and history shortcuts—to help users automate tasks and work more efficiently.

ShellUnix toolscommand-line
0 likes · 9 min read
15 Essential Linux Command‑Line Tricks to Boost Your Productivity
FunTester
FunTester
Apr 21, 2021 · Fundamentals

Master Linux File Search: Powerful find Command Tricks and Examples

This guide walks through the versatile Linux find command, showing how to locate files and directories by name, type, size, timestamps, permissions, and more, while demonstrating practical examples such as pattern matching, case‑insensitive searches, depth limiting, and executing actions on results.

File SearchLinuxShell
0 likes · 10 min read
Master Linux File Search: Powerful find Command Tricks and Examples
Efficient Ops
Efficient Ops
Apr 19, 2021 · Operations

15 Essential Linux Command-Line Tricks to Boost Your Productivity

This article presents fifteen practical Linux command-line techniques—from quickly emptying files and generating large test files to securely erasing disks, monitoring logs, converting timestamps, measuring execution time, handling garbled filenames, retrieving public IPs, batch downloading, and mastering history shortcuts—designed to dramatically improve everyday productivity.

LinuxShellcommand-line
0 likes · 9 min read
15 Essential Linux Command-Line Tricks to Boost Your Productivity
Liangxu Linux
Liangxu Linux
Apr 18, 2021 · Fundamentals

Mastering Bash Brackets: Parentheses, Brackets, and Brace Expansions Explained

This guide provides a comprehensive overview of Bash’s various bracket types—including parentheses, double parentheses, square brackets, double square brackets, and curly braces—detailing their syntax, typical use‑cases, parameter‑expansion forms, pattern‑matching capabilities, and practical code examples for effective shell scripting.

BashScriptingShell
0 likes · 13 min read
Mastering Bash Brackets: Parentheses, Brackets, and Brace Expansions Explained
FunTester
FunTester
Apr 16, 2021 · Fundamentals

Linux Filesystem Overview, Common Issues, and Vim/Shell Command Guide

This article introduces the Linux filesystem hierarchy, explains typical directories, provides solutions for MobaTextEditor garbled text, and offers a concise guide to Vim modes, settings, search/replace commands, and useful shell scripts for system administrators.

FilesystemLinuxShell
0 likes · 8 min read
Linux Filesystem Overview, Common Issues, and Vim/Shell Command Guide
Liangxu Linux
Liangxu Linux
Apr 14, 2021 · Operations

7 Practical Bash Scripts to Boost Linux Sysadmin Efficiency

This article presents seven hands‑on Bash script examples that cover concurrent hostname collection, process state counting, bulk file renaming, automated jstack logging, GC log analysis, high‑traffic IP detection with conditional reporting, and moving large files while sorting them by size, each with complete code snippets.

BashScriptingShell
0 likes · 8 min read
7 Practical Bash Scripts to Boost Linux Sysadmin Efficiency
Laravel Tech Community
Laravel Tech Community
Apr 11, 2021 · Operations

Commonly Used Linux Commands: A Quick Reference Guide

This article provides a comprehensive cheat‑sheet of the 21 most frequently asked Linux commands, covering file navigation, content viewing, searching, permissions, text processing, archiving, system control, and process management for interview preparation and daily use.

ShellSystem Administrationcommand-line
0 likes · 10 min read
Commonly Used Linux Commands: A Quick Reference Guide
Sohu Tech Products
Sohu Tech Products
Mar 31, 2021 · Operations

Shell Basics: Introduction, Commands, Variables, and Scripting

This article provides a comprehensive introduction to the Bash shell, covering its purpose, user prompts, shebang syntax, execution methods, basic commands like echo and printf, variable handling, environment variables, arithmetic operations, and conditional statements for writing effective shell scripts.

BashLinuxScripting
0 likes · 14 min read
Shell Basics: Introduction, Commands, Variables, and Scripting
Efficient Ops
Efficient Ops
Mar 21, 2021 · Fundamentals

Top 10 Linux Shell Interview Questions and How to Solve Them

This article presents ten common Linux shell interview questions covering script termination, file header removal, line length checking, viewing non‑printing characters, directory permissions, process lifecycle, cut usage, cmp vs diff differences, echo vs ls substitution, and a brief explanation of inodes, each with clear command‑line solutions.

LinuxShellUnix
0 likes · 7 min read
Top 10 Linux Shell Interview Questions and How to Solve Them
php Courses
php Courses
Mar 5, 2021 · Operations

Managing Linux Command History: View, Search, Modify, and Clear

This article explains how to use the Linux history command to view past commands, search with Ctrl +r, repeat previous entries, adjust the number of stored records, and clear the history, providing practical examples and configuration tips for effective shell management.

BashLinuxShell
0 likes · 5 min read
Managing Linux Command History: View, Search, Modify, and Clear
Open Source Linux
Open Source Linux
Mar 3, 2021 · Fundamentals

Master Essential Linux Commands: A Complete Cheat Sheet

This article presents a comprehensive list of essential Linux commands, organized into categories such as online queries, file operations, content viewing, compression, system information, user management, networking, disk handling, permissions, and performance monitoring, each illustrated with reference images.

Cheat SheetLinuxShell
0 likes · 3 min read
Master Essential Linux Commands: A Complete Cheat Sheet
ITPUB
ITPUB
Mar 3, 2021 · Fundamentals

How Linux Starts Your Program: Inside execve, the Loader, and the Dynamic Linker

From the moment a user types a command in the shell to the final exit of the program, this article walks through Linux’s execution pipeline—including shell command parsing, fork, execve, kernel loading via load_elf_binary, the dynamic linker’s role, and the glibc startup sequence—illustrated with detailed diagrams and code snippets.

LinuxShellSystem Call
0 likes · 11 min read
How Linux Starts Your Program: Inside execve, the Loader, and the Dynamic Linker
21CTO
21CTO
Feb 24, 2021 · Fundamentals

Essential Linux Commands Every Beginner Should Master

This article presents a concise, beginner‑friendly list of the most useful Linux command‑line utilities, explaining each command’s purpose and syntax to help newcomers transition from Windows to Linux and become comfortable with terminal operations.

LinuxShellbasics
0 likes · 4 min read
Essential Linux Commands Every Beginner Should Master
Efficient Ops
Efficient Ops
Feb 21, 2021 · Fundamentals

Mastering Linux: Core Components, Kernel, Filesystems, and Shell Explained

This comprehensive guide explores Linux's four main components—kernel, shell, filesystem, and applications—detailing kernel architecture, memory and process management, VFS, device drivers, networking, file types, directory structures, mounting, and practical commands for managing partitions and links.

FilesystemKernelLinux
0 likes · 35 min read
Mastering Linux: Core Components, Kernel, Filesystems, and Shell Explained
Liangxu Linux
Liangxu Linux
Jan 31, 2021 · Operations

Essential Linux Commands Every Java Developer Should Master

A concise reference of the most useful Linux shell commands—from file searching and process management to networking and file compression—explains syntax, common options, and practical examples to help developers interact efficiently with Linux servers.

Java developmentLinuxServer Administration
0 likes · 7 min read
Essential Linux Commands Every Java Developer Should Master
Liangxu Linux
Liangxu Linux
Jan 17, 2021 · Fundamentals

Understanding Linux: Kernel, Shell, Filesystem, and Core Components Explained

This article provides a comprehensive overview of Linux's core components—including the kernel, memory and process management, virtual file system, device drivers, network stack, shell variants, file types, directory hierarchy, partitioning, mounting, and essential command‑line tools—while illustrating each concept with diagrams and code examples.

KernelLinuxMount
0 likes · 34 min read
Understanding Linux: Kernel, Shell, Filesystem, and Core Components Explained
Liangxu Linux
Liangxu Linux
Jan 16, 2021 · Information Security

Essential Linux Security Hardening Checklist for System Administrators

This guide provides system administrators with a step‑by‑step checklist to audit and harden Linux operating systems, covering account management, password policies, service restrictions, filesystem permissions, logging configuration, and practical command examples for comprehensive security compliance.

HardeningLinuxSecurity
0 likes · 9 min read
Essential Linux Security Hardening Checklist for System Administrators
Liangxu Linux
Liangxu Linux
Jan 13, 2021 · Operations

Essential Linux Command Cheat Sheet: 200+ Commands Every Sysadmin Should Know

A comprehensive reference of over two hundred Linux command‑line utilities, grouped by function such as file management, system monitoring, networking, user administration, and process control, each with concise English descriptions to help beginners and seasoned administrators quickly find the right tool for any task.

LinuxShellSystem Administration
0 likes · 16 min read
Essential Linux Command Cheat Sheet: 200+ Commands Every Sysadmin Should Know
Liangxu Linux
Liangxu Linux
Jan 10, 2021 · Fundamentals

How to Delete Files with Problematic Names in Linux: 6 Proven Methods

This guide explains why standard rm fails on files with special characters or leading dashes and provides six reliable techniques—including using a path prefix, the "--" separator, quoting, escaping, inode deletion, and wildcards—to safely remove such files on Linux systems.

LinuxShellSpecial Characters
0 likes · 6 min read
How to Delete Files with Problematic Names in Linux: 6 Proven Methods
Efficient Ops
Efficient Ops
Jan 4, 2021 · Operations

10 Essential Linux Commands Every Developer Should Master

This guide introduces ten fundamental Linux commands—pgrep, pstree, bc, split, nl, mkfifo, ldd, col, xmlwf, and lsof—explaining their purposes, typical usage examples, and how they help developers and system administrators efficiently manage processes, files, and system resources.

LinuxShellUnix
0 likes · 11 min read
10 Essential Linux Commands Every Developer Should Master
Selected Java Interview Questions
Selected Java Interview Questions
Dec 19, 2020 · Operations

Linux System Commands Cheat Sheet

This article provides a comprehensive reference of essential Linux system commands covering system information, date and time management, shutdown/reboot, file and directory operations, searching, mounting, disk usage, user and group management, permissions, special attributes, compression, package handling, network utilities, and backup techniques, all presented with concise examples for quick learning.

LinuxShellSystem Administration
0 likes · 23 min read
Linux System Commands Cheat Sheet
Liangxu Linux
Liangxu Linux
Dec 9, 2020 · Operations

Master Linux Environment Variables: 6 Proven Configuration Methods

This guide explains how to read, configure, and persist Linux environment variables—especially PATH—using export commands, user‑level files like ~/.bashrc and ~/.profile, and system‑wide files such as /etc/profile, /etc/bashrc, and /etc/environment, while also detailing the loading order and testing techniques.

LinuxShellSystem Administration
0 likes · 12 min read
Master Linux Environment Variables: 6 Proven Configuration Methods
Liangxu Linux
Liangxu Linux
Dec 9, 2020 · Fundamentals

Master Linux Pipes and Redirection: A Hands‑On Guide with Code Examples

This article explains the fundamentals of Linux pipes and file redirection, covering their definitions, how they work as inter‑process communication mechanisms, how to create and use them in C with pipe(), dup2() and fork(), and how to redirect standard streams using freopen(), all illustrated with clear code snippets and diagrams.

C programmingIPCLinux
0 likes · 8 min read
Master Linux Pipes and Redirection: A Hands‑On Guide with Code Examples
ITPUB
ITPUB
Dec 3, 2020 · Operations

Essential Linux Command-Line Tricks for System Administration

This guide compiles practical Linux shell commands and scripts for tasks such as locating and moving files, batch extraction, text manipulation with sed, directory checks, disk‑space monitoring with email alerts, log analysis, firewall rules, SNMP queries, and more, helping sysadmins automate routine operations efficiently.

OperationsScriptingShell
0 likes · 8 min read
Essential Linux Command-Line Tricks for System Administration
Full-Stack DevOps & Kubernetes
Full-Stack DevOps & Kubernetes
Dec 2, 2020 · Operations

Essential Linux Commands Every Sysadmin Should Master

This guide compiles the most frequently used Linux commands for file navigation, content viewing, searching, permission handling, text processing, compression, system shutdown, and process management, providing clear syntax examples and practical tips to boost operational efficiency for system administrators.

LinuxOperationsShell
0 likes · 16 min read
Essential Linux Commands Every Sysadmin Should Master
ITPUB
ITPUB
Dec 2, 2020 · Fundamentals

Master Bash Bracket Syntax: Parentheses, Brackets, and Braces Explained

This guide explains the different types of brackets used in Bash—parentheses, square brackets, double brackets, and braces—covering their syntax, typical use cases such as command grouping, arithmetic evaluation, array handling, test expressions, parameter expansion, and pattern substitution with clear examples.

ScriptingShellbrackets
0 likes · 13 min read
Master Bash Bracket Syntax: Parentheses, Brackets, and Braces Explained
MaGe Linux Operations
MaGe Linux Operations
Nov 30, 2020 · Operations

Unlock Linux’s Dark Side: Master Crypt, Kill, Shred, and More

This guide explores several powerful yet intimidating Linux commands—including crypt, kill, shred, zombie process detection, at midnight scheduling, and daemon management—explaining their purposes, usage nuances, and safety considerations for system administrators and power users.

LinuxSecurityShell
0 likes · 6 min read
Unlock Linux’s Dark Side: Master Crypt, Kill, Shred, and More
Liangxu Linux
Liangxu Linux
Nov 29, 2020 · Fundamentals

35 Essential Linux Commands Every Beginner Should Master

This guide provides a concise, alphabetically ordered reference of 35 core Linux (and macOS) terminal commands, complete with explanations, practical examples, and usage tips to help newcomers quickly become comfortable navigating and managing a Unix-like system.

LinuxShellUnix
0 likes · 20 min read
35 Essential Linux Commands Every Beginner Should Master
Liangxu Linux
Liangxu Linux
Nov 25, 2020 · Operations

Essential Linux Shell Commands for System Monitoring and Troubleshooting

This guide compiles dozens of practical Linux shell commands for deleting zero‑byte files, inspecting processes, checking CPU, memory, disk usage, and more, plus a collection of useful regular expressions for matching Chinese characters, emails, URLs, IPs, and other patterns.

LinuxShellperformance
0 likes · 14 min read
Essential Linux Shell Commands for System Monitoring and Troubleshooting
Liangxu Linux
Liangxu Linux
Nov 17, 2020 · Operations

How to Install and Configure Zsh on Ubuntu 20.04

This guide walks through installing Zsh on Ubuntu 20.04, setting it as the default shell, configuring initial options, and reverting to Bash, providing step‑by‑step commands and screenshots for each stage.

InstallationShellUbuntu
0 likes · 5 min read
How to Install and Configure Zsh on Ubuntu 20.04