Secure Remote Server Management with Xshell and SSH
Managing Linux servers remotely using Xshell and SSH is one of the most widely adopted practices in system administration today. This method relies on two core technical domains:
Computer networking
Encryption and decryption
While not exclusive to system engineers, this toolchain is frequently used by developers and DevOps engineers alike. En ...
Posted on Tue, 19 May 2026 06:59:51 +0000 by automatix
Apache Hadoop Deployment Strategies and HDFS Initialization on Docker
Local Mode (Standalone): In this configuration, Hadoop functions purely as a library. It executes MapReduce jobs on a single machine without managing background processes. This mode is intended solely for debugging code and rapid prototyping.
Pseudo-Distributed Mode: Here, all Hadoop daemons run as separate background processes on a single hos ...
Posted on Mon, 18 May 2026 22:40:05 +0000 by The Cat
Administering Linux Systems: Software, Logging, and Hardware Essentials
Managing Software Packages with YUM
Linux applications are frequently installed under the /usr/local hierarchy. Configuring a reliable mirror significantly improves download speeds and stability.
To replace the default repository with Alibaba Cloud's CentOS mirror, execute:
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/rep ...
Posted on Fri, 15 May 2026 02:15:15 +0000 by kristian_gl
Implementing Yum Repositories, NFS Shared Storage, and Network Packet Analysis
Configuring Yum Software RepositoriesYUM (Yellowdog Updater Modified) is a package management utility that simplifies the installation, updating, and removal of software packages on Linux distributions. By resolving dependencies automatically, it alleviates the need for manual administrative intervention when managing RPM packages. In environme ...
Posted on Fri, 08 May 2026 18:30:40 +0000 by PartyMarty