Tagged articles
769 articles
Page 6 of 8
macrozheng
macrozheng
Sep 23, 2020 · Operations

Essential Linux Commands Every Java Backend Engineer Should Master

This guide provides Java backend developers with a comprehensive collection of practical Linux commands for CentOS 7.6, covering system service management, file operations, compression, disk and network monitoring, as well as software installation and package management, all illustrated with clear examples and screenshots.

Backend DevelopmentCentOSLinux
0 likes · 12 min read
Essential Linux Commands Every Java Backend Engineer Should Master
Open Source Linux
Open Source Linux
Sep 21, 2020 · Operations

Master Essential Linux Commands and Regex Tricks for System Operations

This guide presents a concise collection of practical CentOS 8 Linux commands and regular‑expression patterns, showing how to retrieve IP addresses, disk usage, user information, file permissions, and more, complete with command examples and visual output screenshots.

CentOSLinuxSystem Administration
0 likes · 5 min read
Master Essential Linux Commands and Regex Tricks for System Operations
Liangxu Linux
Liangxu Linux
Sep 19, 2020 · Operations

Enable or Disable Ubuntu’s Root Account in Minutes

Learn step‑by‑step how to activate the root user on Ubuntu, assign a password, configure sudo for password‑less access, and later lock or disable the root account by expiring its password, with clear command examples and safety tips.

$rootLinuxSudo
0 likes · 4 min read
Enable or Disable Ubuntu’s Root Account in Minutes
ITPUB
ITPUB
Sep 17, 2020 · Operations

Understanding the Key Differences Between sudo and su in Linux

This article explains how sudo and su differ in password requirements, default behavior, scope of privilege elevation, environment handling, and usage syntax, providing clear examples and guidance for choosing the appropriate command in Linux system administration.

LinuxSudoSystem Administration
0 likes · 5 min read
Understanding the Key Differences Between sudo and su in Linux
Liangxu Linux
Liangxu Linux
Sep 16, 2020 · Operations

sudo vs su: When to Use Each Linux Privilege Command

This guide explains the key differences between sudo and su on Linux, covering password requirements, default behaviors, environment handling, command syntax variations, and practical usage tips for switching users or executing privileged commands safely.

LinuxSudoSystem Administration
0 likes · 5 min read
sudo vs su: When to Use Each Linux Privilege Command
Efficient Ops
Efficient Ops
Sep 7, 2020 · Operations

Top 10 Linux Shell Interview Questions and How to Solve Them

This article walks through ten common Linux shell interview questions, covering script interruption, file header removal, line length checking, viewing non‑printing characters, directory permissions, process states, cut usage, cmp vs diff, echo vs ls, and a brief explanation of inodes.

LinuxShellSystem Administration
0 likes · 7 min read
Top 10 Linux Shell Interview Questions and How to Solve Them
IT Architects Alliance
IT Architects Alliance
Aug 20, 2020 · Fundamentals

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

This article provides a comprehensive overview of Linux’s core architecture, detailing the kernel, shell, memory and process management, virtual file system, various file system types, directory structures, partitioning, mounting procedures, and link mechanisms, offering readers a solid foundation for mastering Linux systems.

FilesystemKernelOperating System
0 likes · 35 min read
Understanding Linux: Kernel, Shell, Filesystem, and Core Components
Senior Brother's Insights
Senior Brother's Insights
Aug 19, 2020 · Operations

Essential Ops Lessons: Avoid Disasters with Backups, Monitoring, and Secure Practices

This guide shares hard‑earned lessons from real‑world server administration, emphasizing careful testing, confirming commands before execution, limiting simultaneous operators, always backing up configurations, protecting data, tightening SSH and firewall security, implementing comprehensive monitoring, and applying disciplined performance‑tuning practices to maintain stable, reliable services.

BackupOperationsSystem Administration
0 likes · 12 min read
Essential Ops Lessons: Avoid Disasters with Backups, Monitoring, and Secure Practices
ITPUB
ITPUB
Aug 19, 2020 · Operations

Mastering Linux ps: Essential Commands for Process Monitoring and Filtering

This guide explains the Linux ps command, its basic options, output formats, and practical examples for listing all processes, filtering by user, CPU or memory usage, sorting, displaying threads, tree view, security information, root‑owned processes, and combining ps with watch for near‑real‑time monitoring.

LinuxSystem AdministrationUnix
0 likes · 10 min read
Mastering Linux ps: Essential Commands for Process Monitoring and Filtering
Open Source Linux
Open Source Linux
Aug 14, 2020 · Operations

Speed Up Linux Workflows: Quick Dir Jump, Vim Tweaks, MySQL Prompt & System Info

This guide introduces several handy Linux command-line tricks, including the 'z' shortcut for rapid directory navigation, a feature‑rich Vim configuration, customizing MySQL prompts, reliable methods to display system version details, and concise commands for checking disk usage, helping users streamline their workflow.

LinuxSystem Administrationmysql
0 likes · 4 min read
Speed Up Linux Workflows: Quick Dir Jump, Vim Tweaks, MySQL Prompt & System Info
Architecture Digest
Architecture Digest
Aug 7, 2020 · Operations

A Beginner’s Guide to macOS Terminal: Basics, Common Commands, and Advanced Tips

This article introduces macOS Terminal as the bridge between the kernel and the user interface, explains how to open it, covers fundamental concepts such as commands, paths, and file operations, and provides a collection of practical commands—from simple echoes to disk management and Homebrew installation—while warning about risky operations and offering advanced customization tips.

AutomationShellSystem Administration
0 likes · 17 min read
A Beginner’s Guide to macOS Terminal: Basics, Common Commands, and Advanced Tips
Open Source Linux
Open Source Linux
Aug 4, 2020 · Operations

Recover Accidentally Deleted Linux Files with lsof and extundelete

This guide explains how to restore mistakenly removed Linux files by first checking if the deleting process still holds the file descriptor using lsof, then copying the open file from /proc, and finally using the extundelete tool when the process has already terminated.

File RecoveryLinuxSystem Administration
0 likes · 7 min read
Recover Accidentally Deleted Linux Files with lsof and extundelete
Liangxu Linux
Liangxu Linux
Jul 22, 2020 · Operations

How to Fix sudo Missing Environment Variables on Linux

When using sudo, Linux resets the environment, causing custom variables to disappear; this guide explains why, shows the relevant lines in /etc/sudoers, and presents three practical methods—including sudo -E, editing env_keep and secure_path, and creating aliases—to retain needed variables.

BashEnvironment VariablesLinux
0 likes · 4 min read
How to Fix sudo Missing Environment Variables on Linux
21CTO
21CTO
Jul 17, 2020 · Fundamentals

Master Essential Linux Commands and System Administration Basics

This comprehensive guide covers fundamental Linux commands such as ls and cat, user and group management, package handling with RPM and yum, process monitoring tools, file searching utilities, scheduled task creation with at and crontab, and automating interactions using Expect, providing clear examples and code snippets for each topic.

LinuxShell scriptingSystem Administration
0 likes · 38 min read
Master Essential Linux Commands and System Administration Basics
Open Source Linux
Open Source Linux
Jul 1, 2020 · Operations

Master Linux Process Management: Essential ps Command Techniques

This guide walks you through the Linux ps command, covering basic usage, common options for listing all processes, filtering by user, CPU or memory usage, process name, PID, threads, tree view, security details, root‑specific formatting, and real‑time monitoring with watch.

LinuxShellSystem Administration
0 likes · 6 min read
Master Linux Process Management: Essential ps Command Techniques
Liangxu Linux
Liangxu Linux
Jun 29, 2020 · Operations

Master Linux Scheduling: One‑Time and Recurring Tasks with at and crontab

This guide explains how Linux system administrators can automate one‑off and periodic jobs using the at command for single executions and the crond service with crontab for recurring tasks, providing concrete command examples, field syntax, and practical tips to avoid common pitfalls.

LinuxSystem Administrationat
0 likes · 9 min read
Master Linux Scheduling: One‑Time and Recurring Tasks with at and crontab
DevOps Cloud Academy
DevOps Cloud Academy
Jun 27, 2020 · Operations

Linux System Network Management with ifconfig, ip, and nmcli

This guide explains Linux network fundamentals, shows how to view and configure network interfaces using ifconfig, ip, and the nmcli tool, and provides step‑by‑step examples of editing ifcfg files and applying changes on CentOS 7 systems.

LinuxSystem Administrationifconfig
0 likes · 9 min read
Linux System Network Management with ifconfig, ip, and nmcli
DevOps Cloud Academy
DevOps Cloud Academy
Jun 27, 2020 · Operations

Configuring VNC Server and SSH Remote Access on Linux

This guide explains how to install and configure a VNC server on a Linux virtual machine, set a static IP, manage firewall and SELinux settings, and use SSH for remote command‑line access, including all necessary commands and client setup steps.

LinuxRemote accessSSH
0 likes · 4 min read
Configuring VNC Server and SSH Remote Access on Linux
DevOps Cloud Academy
DevOps Cloud Academy
Jun 26, 2020 · Operations

Linux System User and Group Management Tutorial

This tutorial explains Linux user and group management, covering login prompts, user information commands, adding, modifying, and deleting users, switching users, password handling, file permission changes, and group administration with practical command examples and code snippets.

LinuxOperationsShell Commands
0 likes · 7 min read
Linux System User and Group Management Tutorial
DevOps Cloud Academy
DevOps Cloud Academy
Jun 26, 2020 · Fundamentals

Introduction to Linux Operating System – Basics and Common Distributions

This article provides a beginner-friendly overview of Linux, covering its definition, history, open‑source nature, key features, common distributions such as RedHat, CentOS, and Ubuntu, and related career paths and certifications, helping readers understand why Linux is essential for modern computing.

LinuxOperating SystemSystem Administration
0 likes · 5 min read
Introduction to Linux Operating System – Basics and Common Distributions
DevOps Cloud Academy
DevOps Cloud Academy
Jun 26, 2020 · Operations

Linux File and Directory Permission Management Tutorial

This tutorial explains Linux file and directory permission management, covering permission categories, how to view, add, revoke, and recursively apply permissions using commands such as ls, chmod, and demonstrates permission notation with examples.

File PermissionsLinuxOperations
0 likes · 3 min read
Linux File and Directory Permission Management Tutorial
Liangxu Linux
Liangxu Linux
Jun 21, 2020 · Operations

How to Locate and Eliminate Zombie Processes with ps, grep, and kill

This guide explains how to use the ps and grep commands to identify zombie processes on Linux, shows the command syntax, interprets the output, and provides step‑by‑step instructions for terminating the zombie and its parent process if needed.

GrepLinuxSystem Administration
0 likes · 3 min read
How to Locate and Eliminate Zombie Processes with ps, grep, and kill
Ops Development Stories
Ops Development Stories
Jun 12, 2020 · Operations

Step-by-Step Guide to Upgrading Zabbix 4.0→5.0 and Migrating Elasticsearch to 7.x

This article provides a comprehensive, ordered procedure for upgrading a Zabbix 4.0 monitoring system to version 5.0 using blue‑green deployment, backing up configurations, updating repositories, applying MySQL patches, and then migrating the associated Elasticsearch cluster from 6.1 to 7.x, including all necessary command‑line steps, configuration edits, and post‑upgrade validation.

ElasticsearchLinuxSystem Administration
0 likes · 11 min read
Step-by-Step Guide to Upgrading Zabbix 4.0→5.0 and Migrating Elasticsearch to 7.x
Open Source Linux
Open Source Linux
Jun 2, 2020 · Operations

Force Users to Change Password on First Login with Linux chage

This guide shows how to create a Linux user, force an immediate password change on first login using the chage command, verify the behavior, and manage password expiration policies with practical examples and command explanations.

LinuxSystem AdministrationUser Management
0 likes · 5 min read
Force Users to Change Password on First Login with Linux chage
Open Source Linux
Open Source Linux
May 13, 2020 · Information Security

Mastering iptables: A Beginner’s Guide to Linux Firewall Configuration

This article introduces iptables, explains its tables, chains, and packet‑processing flow, and provides step‑by‑step commands for installing and configuring the Linux firewall, offering a solid foundation for anyone new to network security on Linux systems.

Linux firewallSystem Administrationiptables
0 likes · 6 min read
Mastering iptables: A Beginner’s Guide to Linux Firewall Configuration
Open Source Linux
Open Source Linux
Mar 15, 2020 · Backend Development

How to Completely Uninstall Nginx on Linux: Step-by-Step Guide

Learn the complete process to safely remove Nginx from a Linux system, including stopping the service, locating and deleting all related files, disabling auto-start, and preparing for a fresh reinstall, with clear command examples and visual aids.

BackendSystem Administrationcommand-line
0 likes · 3 min read
How to Completely Uninstall Nginx on Linux: Step-by-Step Guide
MaGe Linux Operations
MaGe Linux Operations
Mar 13, 2020 · Operations

Top Linux Interview Questions: GPL, Buffers, Runlevels, Boot Process and More

This article provides concise explanations and command examples for common Linux interview topics, covering GPL and free software, buffer vs cache, runlevels, boot sequence, link types, shell exit status, history timestamps, log analysis, port forwarding, load troubleshooting, fstab fields, packaging, password generation, TCP state, and MySQL root recovery.

ShellSystem Administrationinterview-questions
0 likes · 9 min read
Top Linux Interview Questions: GPL, Buffers, Runlevels, Boot Process and More
ITPUB
ITPUB
Mar 11, 2020 · Operations

Master Linux File Attributes: Using chattr for Immutable and Append‑Only Files

This guide explains the common chattr command flags—such as A, S, a, i, and +a—detailing their effects on file timestamps, immutability, append‑only mode, and other attributes, and provides practical examples for locking, hiding, and restoring files on Linux systems.

LinuxSecuritySystem Administration
0 likes · 4 min read
Master Linux File Attributes: Using chattr for Immutable and Append‑Only Files
Liangxu Linux
Liangxu Linux
Mar 4, 2020 · Operations

Master Linux top: A Complete Real‑Time Process Monitoring Guide

This article provides a thorough walkthrough of the Linux top command, explaining its default output, the meaning of each field, how to navigate and customize the interactive interface, and how to use command‑line options for batch mode, refresh intervals, user filtering, and more.

System Administrationprocess monitoringtop
0 likes · 14 min read
Master Linux top: A Complete Real‑Time Process Monitoring Guide
Liangxu Linux
Liangxu Linux
Feb 23, 2020 · Operations

Master tmpwatch: Safely Clean Up Unused Files on Linux

This guide explains how to install, configure, and use the Linux tmpwatch/tmpreaper commands—including safety warnings, option details, example usages, and cron automation—to reliably delete files that haven't been accessed or modified within a specified time frame.

File CleanupSystem Administrationcron
0 likes · 9 min read
Master tmpwatch: Safely Clean Up Unused Files on Linux
Open Source Linux
Open Source Linux
Feb 7, 2020 · Operations

How to Set Up Real-Time Data Sync with Sersync and Rsync on CentOS

This guide walks through configuring two CentOS 7.7 hosts for real-time data synchronization using Sersync and Rsync, covering environment preparation, service deployment, configuration file editing, manual testing, daemon startup, and automatic startup via rc.local.

CentOSLinuxSystem Administration
0 likes · 8 min read
How to Set Up Real-Time Data Sync with Sersync and Rsync on CentOS
Liangxu Linux
Liangxu Linux
Jan 22, 2020 · Operations

Master Linux Backups with dd: 6 Practical Examples

Learn how to protect critical data on Linux by using the powerful dd command, with six detailed examples covering full-disk cloning, image creation, partition backup, floppy and CD ISO imaging, and essential options like conv=noerror and bs for reliable, low-level backups.

System Administrationdddisk cloning
0 likes · 5 min read
Master Linux Backups with dd: 6 Practical Examples
Liangxu Linux
Liangxu Linux
Jan 19, 2020 · Operations

Master Linux Process Monitoring: From ps to htop Explained

This guide maps four classic fictional detectives to Linux process tools—ps, dstat, top, and htop—explains their options, output fields, and interactive features, providing a comprehensive reference for system administrators and developers.

System Administrationdstathtop
0 likes · 11 min read
Master Linux Process Monitoring: From ps to htop Explained
MaGe Linux Operations
MaGe Linux Operations
Jan 19, 2020 · Operations

Essential Linux Command Cheat Sheet: File, Network, System & User Management

This article presents a comprehensive collection of essential Linux command-line tools, covering file and directory manipulation, content viewing, compression, system monitoring, user management, network operations, disk and filesystem handling, permissions, process control, and shutdown/reboot procedures, each illustrated with reference images.

ShellSystem Administrationcommand-line
0 likes · 3 min read
Essential Linux Command Cheat Sheet: File, Network, System & User Management
Liangxu Linux
Liangxu Linux
Jan 9, 2020 · Operations

How to Install Offline C++ Man Pages on Linux

This guide walks you through downloading, extracting, and configuring C++ library man pages on a Linux system so that the standard "man" command can provide offline documentation for C++ functions and classes.

C++DocumentationSystem Administration
0 likes · 7 min read
How to Install Offline C++ Man Pages on Linux
Liangxu Linux
Liangxu Linux
Jan 4, 2020 · Operations

How to Manage Linux Boot Scripts: rc.local, init.d, chkconfig & More

This guide explains how Linux servers start services automatically, covering rc.local, init.d scripts, chkconfig configuration, run‑level settings, and login‑shell scripts, with step‑by‑step commands and examples for reliable boot‑time automation.

System Administrationboot scriptschkconfig
0 likes · 7 min read
How to Manage Linux Boot Scripts: rc.local, init.d, chkconfig & More
Liangxu Linux
Liangxu Linux
Jan 2, 2020 · Operations

Master Linux File Searches: Powerful find Command Techniques

This guide walks you through the Linux find command, covering essential options for locating directories, hidden files, size‑based matches, recent modifications, permission‑restricted items, and more, while also comparing find with locate and showing how to limit CPU and I/O impact.

Shell scriptingSystem Administrationfind command
0 likes · 14 min read
Master Linux File Searches: Powerful find Command Techniques
MaGe Linux Operations
MaGe Linux Operations
Dec 18, 2019 · Operations

Mastering Modern IT Operations: Roles, Practices, and Evolution

This article outlines the comprehensive responsibilities and evolution of IT operations, covering system, application, database, security, and platform management, detailing tasks such as infrastructure building, monitoring, optimization, automation, and the shift from manual processes to self‑scheduling systems.

AutomationIT OperationsInfrastructure
0 likes · 20 min read
Mastering Modern IT Operations: Roles, Practices, and Evolution
ITPUB
ITPUB
Dec 11, 2019 · Operations

Master Linux Runlevels and Systemd Targets: How to View, Change, and Secure Them

This guide explains the purpose of Linux runlevels, maps them to systemd targets, shows how to check the current runlevel, change it temporarily or permanently, list services per level, create custom levels, and improve system security through fine‑grained service control.

LinuxRunlevelSecurity
0 likes · 13 min read
Master Linux Runlevels and Systemd Targets: How to View, Change, and Secure Them
Efficient Ops
Efficient Ops
Dec 1, 2019 · Operations

15 Must‑Have CLI Tools to Supercharge Your IT Operations

Discover a curated list of fifteen powerful command‑line utilities—from fast file searchers and interactive Git viewers to multi‑threaded downloaders and terminal session recorders—that can dramatically improve productivity and monitoring for system administrators and DevOps engineers.

CLI toolsLinuxSystem Administration
0 likes · 5 min read
15 Must‑Have CLI Tools to Supercharge Your IT Operations
Liangxu Linux
Liangxu Linux
Nov 12, 2019 · Operations

Three Powerful Linux Commands to Quickly Locate the Largest Files

Learn three practical Linux command-line techniques—using ls, find, and du—to quickly identify the largest files or directories on your system, complete with example commands for listing top files, filtering by size ranges, and displaying human‑readable disk usage.

System Administrationdufile management
0 likes · 5 min read
Three Powerful Linux Commands to Quickly Locate the Largest Files
MaGe Linux Operations
MaGe Linux Operations
Oct 27, 2019 · Operations

Master Linux System Administration: 100 Essential Quiz Questions

This article presents a comprehensive set of 100 multiple‑choice questions covering Linux system administration topics such as daemons, file permissions, package management, networking, and command‑line utilities, along with the correct answers for self‑assessment and exam preparation.

Linux BasicsQuizSystem Administration
0 likes · 31 min read
Master Linux System Administration: 100 Essential Quiz Questions
Java Captain
Java Captain
Oct 12, 2019 · Operations

Curated List of Free Technical Books Covering Linux, System Administration, Networking, and More

This article presents a curated collection of over a hundred free technical books—including Linux command‑line guides, system‑administration manuals, computer‑networking textbooks, and Docker tutorials—complete with brief descriptions, download links, and the impressive GitHub star and fork statistics of the source project.

LinuxOperationsSystem Administration
0 likes · 8 min read
Curated List of Free Technical Books Covering Linux, System Administration, Networking, and More
Liangxu Linux
Liangxu Linux
Oct 10, 2019 · Fundamentals

Top 100 Linux Command Quiz: Test Your Sysadmin Knowledge

This comprehensive multiple‑choice quiz covers essential Linux commands, system‑administration tasks, daemon management, file permissions, networking utilities, and package handling, providing a practical way to assess and reinforce your command‑line expertise.

QuizSystem Administration
0 likes · 25 min read
Top 100 Linux Command Quiz: Test Your Sysadmin Knowledge
Liangxu Linux
Liangxu Linux
Oct 9, 2019 · Operations

How to Master Linux: A Practical Roadmap for Developers and Sysadmins

This guide explains why learning Linux is essential for developers and system administrators, outlines three learning tracks—operations, application development, and low‑level development—and provides a staged roadmap with concrete commands, tools, and study strategies to become proficient in Linux.

Learning PathSystem Administrationprogramming
0 likes · 9 min read
How to Master Linux: A Practical Roadmap for Developers and Sysadmins
Liangxu Linux
Liangxu Linux
Oct 2, 2019 · Operations

How to Shrink /home and Expand Root on CentOS 7

This guide walks through diagnosing a busy /home mount, installing missing tools, safely unmounting, resizing the home partition, installing XFS utilities, and finally expanding the root filesystem on a CentOS 7 server.

CentOSFilesystemHome Directory
0 likes · 4 min read
How to Shrink /home and Expand Root on CentOS 7
ITPUB
ITPUB
Sep 9, 2019 · Operations

Master Linux Basics: Essential Commands and Learning Path for Beginners

This guide outlines a practical roadmap for Linux newcomers, covering the purpose of learning, essential command‑line tools, recommended resources, habits for working in the shell, Unix‑style thinking, and key skills like Shell scripting, Python, DevOps, and cloud automation.

Learning GuideLinuxShell scripting
0 likes · 9 min read
Master Linux Basics: Essential Commands and Learning Path for Beginners
21CTO
21CTO
Sep 8, 2019 · Databases

Master MySQL Optimization: Proven Strategies for High Performance and Stability

This comprehensive guide walks you through MySQL optimization philosophy, risk management, stakeholder involvement, practical tools, hardware and system tuning, kernel parameter adjustments, and detailed MySQL configuration tweaks to achieve both performance gains and reliable stability in production environments.

Database OptimizationLinuxSystem Administration
0 likes · 18 min read
Master MySQL Optimization: Proven Strategies for High Performance and Stability
Liangxu Linux
Liangxu Linux
Sep 4, 2019 · Operations

Automate Linux Memory & Swap Monitoring with Email Alerts

This guide walks through installing the msmtp email client, configuring mutt, using the free command to capture memory and swap statistics, writing Bash scripts to log and email the data, and scheduling the tasks with cron so alerts are sent when swap usage exceeds 80 %.

EmailSystem Administrationmonitoring
0 likes · 8 min read
Automate Linux Memory & Swap Monitoring with Email Alerts
DevOps Cloud Academy
DevOps Cloud Academy
Aug 11, 2019 · Operations

How to Remove an SSD Disk from MooseFS (MFS) Configuration

This guide explains how to safely remove an SSD that was mistakenly added as a data disk in MooseFS by unmounting the MFS directory, editing the mfshdd configuration, restarting the chunkserver, cleaning up fstab entries, and verifying the removal.

ConfigurationLinuxMooseFS
0 likes · 2 min read
How to Remove an SSD Disk from MooseFS (MFS) Configuration
Programmer DD
Programmer DD
Aug 5, 2019 · Databases

Master MySQL Optimization: Practical Strategies to Boost Performance and Stability

This guide walks you through MySQL's query process, the philosophy and risks of optimization, the key participants, core dimensions such as hardware, system, schema and SQL, essential diagnostic tools, emergency and regular tuning steps, system‑level monitoring, kernel and user limits, as well as detailed MySQL and InnoDB configuration parameters for achieving high performance and reliability.

Database OptimizationSQLSystem Administration
0 likes · 15 min read
Master MySQL Optimization: Practical Strategies to Boost Performance and Stability
Java Captain
Java Captain
Aug 3, 2019 · Operations

Practical Guide to Viewing Logs, Processes, Ports, and System Status on Linux

This article provides a comprehensive, step‑by‑step tutorial on using Linux command‑line tools such as cat, tail, vim, grep, sed, ps, netstat, lsof, and free to efficiently view large log files, locate specific entries, monitor processes and ports, and assess overall system health.

LinuxLog ManagementOperations
0 likes · 8 min read
Practical Guide to Viewing Logs, Processes, Ports, and System Status on Linux
Liangxu Linux
Liangxu Linux
Jul 23, 2019 · Operations

Essential Linux Command Cheat Sheet: Paths, Files, Processes, and More

A comprehensive guide covering common Linux shell commands, including path symbols, directory navigation, file manipulation, process management, permission changes, searching, and environment handling, presented as concise questions and answers for quick reference by developers and system administrators.

System Administration
0 likes · 18 min read
Essential Linux Command Cheat Sheet: Paths, Files, Processes, and More
ITPUB
ITPUB
Jul 19, 2019 · Operations

How to Shrink /home and Expand Root on CentOS 7

This guide walks through shrinking the /home partition, extending the root filesystem on a CentOS 7 server, handling busy mount issues, installing missing tools like fuser and xfsdump, resizing XFS, and safely remounting the partitions.

CentOSLinuxPartitioning
0 likes · 2 min read
How to Shrink /home and Expand Root on CentOS 7
MaGe Linux Operations
MaGe Linux Operations
Jul 18, 2019 · Operations

Mastering Linux Operations: Roles, Skills, and Career Roadmap

This comprehensive guide explores Linux’s dominance in servers, outlines the various Linux‑related fields, details the responsibilities and classifications of Linux operations roles, lists essential tools and skills, and highlights the evolution and future trends for aspiring Linux ops professionals.

AutomationDevOpsSystem Administration
0 likes · 15 min read
Mastering Linux Operations: Roles, Skills, and Career Roadmap
21CTO
21CTO
Jul 13, 2019 · Operations

How to Set Up Automated Linux Memory & Swap Monitoring with Email Alerts

Learn step‑by‑step how to install the msmtp email client, configure mutt, use the free command to monitor Linux memory and swap usage, write Bash scripts that log and email the results, and schedule these checks with cron for continuous system health alerts.

BashEmailLinux
0 likes · 7 min read
How to Set Up Automated Linux Memory & Swap Monitoring with Email Alerts
MaGe Linux Operations
MaGe Linux Operations
Jul 2, 2019 · Operations

Three Simple Ways to Configure DNS on a Linux Machine

This guide explains three practical methods for setting up DNS resolution on Linux—editing the local hosts file, modifying the system's resolv.conf, and configuring network interface files—along with the precedence order and necessary service restarts.

DNSNetwork ConfigurationSystem Administration
0 likes · 3 min read
Three Simple Ways to Configure DNS on a Linux Machine
MaGe Linux Operations
MaGe Linux Operations
Jun 4, 2019 · Operations

Master Linux Server Performance: Essential Tools & Metrics Explained

This article walks through key Linux performance monitoring tools—top, vmstat, pidstat, iostat, sar, netstat, and tcpdump—explaining their output fields, how to interpret CPU, memory, disk, and network metrics, and how to use them for effective system troubleshooting.

Performance MonitoringSystem Administrationpidstat
0 likes · 17 min read
Master Linux Server Performance: Essential Tools & Metrics Explained
Efficient Ops
Efficient Ops
Apr 8, 2019 · Operations

Mastering Linux ps: Decode Options, Syntax, and Output Secrets

This comprehensive guide demystifies the Linux ps command by explaining its option syntax, the differences between BSD, SYSV and GNU styles, record‑selection rules, sorting, threading, field selection, modifiers, and error‑handling, while providing practical examples, visual illustrations, and tips for effective system monitoring.

LinuxSystem Administrationcommand-line
0 likes · 39 min read
Mastering Linux ps: Decode Options, Syntax, and Output Secrets
MaGe Linux Operations
MaGe Linux Operations
Mar 26, 2019 · Operations

Master Essential Linux Commands for System Operations

This guide presents a comprehensive visual cheat sheet of essential Linux commands, covering file and directory operations, content viewing, compression, information display, file searching, user and permission management, basic and advanced networking, disk and filesystem handling, system monitoring, shutdown/reboot, and process management.

LinuxShellSystem Administration
0 likes · 3 min read
Master Essential Linux Commands for System Operations
DevOps Cloud Academy
DevOps Cloud Academy
Mar 6, 2019 · Operations

KVM Installation and Configuration Guide

This article provides a step‑by‑step tutorial on installing and configuring KVM on a Linux server, covering CPU virtualization enablement, package installation, module loading, network setup, virtual disk creation, VM deployment, firewall rules, and VNC access.

KVMLinuxQEMU
0 likes · 5 min read
KVM Installation and Configuration Guide
Efficient Ops
Efficient Ops
Jan 30, 2019 · Operations

From Rookie to Ops Manager: Key Lessons on Linux, Infrastructure, and Career Growth

The author shares a journey from a college Linux basics class to becoming an operations manager, detailing early hands‑on tasks, challenges in chaotic server environments, the creation of monitoring systems, and three key career lessons about learning, deepening technical understanding, and evaluating workplace fit.

LinuxOperationsSystem Administration
0 likes · 6 min read
From Rookie to Ops Manager: Key Lessons on Linux, Infrastructure, and Career Growth
MaGe Linux Operations
MaGe Linux Operations
Jan 16, 2019 · Operations

How to Install and Configure a Linux DNS Server with BIND

This guide explains the purpose of DNS, the role of the /etc/hosts file, the different DNS record types, and provides step‑by‑step instructions for installing BIND on Linux, configuring master, slave and cache servers, and managing zones and records.

BINDDNSLinux
0 likes · 17 min read
How to Install and Configure a Linux DNS Server with BIND
Efficient Ops
Efficient Ops
Jan 10, 2019 · Operations

Essential DBA & Ops Practices to Prevent System Failures

This article outlines ten practical guidelines for DBAs and system administrators—including rollback‑ready changes, cautious use of destructive commands, prompt customization, reliable backups, production respect, thorough handovers, alerting, monitoring, careful failover, meticulous checks, and the virtue of simplicity—to minimize costly system outages.

LinuxOperationsOracle
0 likes · 7 min read
Essential DBA & Ops Practices to Prevent System Failures
MaGe Linux Operations
MaGe Linux Operations
Jan 5, 2019 · Fundamentals

Master Linux: Understanding Every Directory and Its Purpose

This guide explains the purpose and typical contents of each major Linux directory—from /bin and /sbin for essential binaries to /etc for configuration files, /proc for virtual system information, and /usr, /var, /home for user data and applications—providing a comprehensive overview for system administrators and developers.

Directory StructureFilesystemLinux
0 likes · 17 min read
Master Linux: Understanding Every Directory and Its Purpose