Methods for Accessing Network Devices

1. Switch View Overview Switch devices offer a wide range of functions, and thus provide various configuration commands. To make it easier for users to use these commands, Huawei switches classify the command views by function. Therefore, when configuring a specific function, it is necessary to first enter the corresponding command-line view. H ...

Posted on Wed, 27 May 2026 18:30:10 +0000 by noginn

Remote Development with IntelliJ IDEA: SSH Tunnel Configuration for Linux Servers

Entroduction Working with remote Linux environments is a common requirement for modern development teams. This guide explains how to configure IntelliJ IDEA for remote server development using SSH, and demonstrates how to establish connections through network boundaries using tunneling software. The appproach allows compilation, building, debug ...

Posted on Wed, 20 May 2026 19:24:28 +0000 by prudens

Pushing Code to Gerrit: A Step-by-Step Setup Guide for Enterprise Environments

Deploying code to a corporate Gerrit instance often involves navigating layered constraints—internal DNS, SSH/GPG trust chains, cross-platform tooling (e.g., WSL), and nested repository structures. This guide walks through a production-ready workflow to initialize and push your first change, grounded in real-world enterprise infrastructure. Env ...

Posted on Wed, 20 May 2026 16:52:00 +0000 by advancedfuture

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

Comprehensive Guide to Essential Git Operations

Core Git Operations Managing your development enviroment and repositories effectively is critical for version control workflows. Repository Setup and File Management # Initialize a new local repository git init # Configure remote origin git remote add origin <repository_url> # Clone a specific branch git clone -b <branch_name> &l ...

Posted on Mon, 18 May 2026 21:00:06 +0000 by 1veedo

Automating SSH Key Deployment and Ansible Fundamentals

Generating SSH Key Pairs Initialize secure authentication by creating an RSA key pair on the management node. The following command generates the keys without a passphrase for automation purposes. ssh-keygen -t rsa -b 2048 -f ~/.ssh/id_rsa -N "" Non-Interactive Authentication Setup To facilitate scripted connections where manual pass ...

Posted on Sat, 16 May 2026 22:51:34 +0000 by inversesoft123

Automated MySQL Backup Strategy Using Shell Scripting and Remote Synchronization

Data integrity is a critical component of server administration. Relying on manual intervention often leads to inconsistent recovery points. To mitigate this risk, an automated solution utilizing a Bash script provides a reliable mechanism for performing consistent dumps, compressing the output, and securely replicating archives to a remote ser ...

Posted on Sat, 16 May 2026 22:41:12 +0000 by treilad

Essential Git Commands for Daily Workflows

Basic Operations git clone <repository-url> # Clone a repository git add . git commit -m 'description' # Stage and commit changes git pull # Fetch and merge remote changes git pull --rebase # Pull with rebase instead of merge git checkout main # Switch to main branch git checkout a1b2c3d4 ...

Posted on Sat, 16 May 2026 03:48:39 +0000 by bqallover

Setting Up a Linux Development Environment on a Cloud Server

There are three primary approaches to setting up a Linux environment: Method Description Dual Boot Installing Linux directly on physical hardware alongside another OS. This is generally not recommended due to poor desktop usability. Virtual Machine Running Linux inside software like VMWare. This can be problematic due to software bugs ...

Posted on Fri, 15 May 2026 17:27:26 +0000 by walter8111

Linux SSH Passwordless Login Configuration

Overview When configuring passwordless SSH login via a bastion host to a target server (e.g., 10.30.3.232), several key step are required. This guide walks through the necessary proces using secure shell (SSH) key-based authentication. Step 1: Check for Existing SSH Keys Log in to the bastion host and switch to the desired user account. Check i ...

Posted on Fri, 15 May 2026 16:23:44 +0000 by maya28