Deploying a Multi-Location Nginx Web Server with TLS and Basic Authentication

Environment Setup Disable conflicting security services and install the necessary packages using the DNF package manager: dnf install nginx httpd-tools -y Configure local DNS resolution on the client machine by adding the following entry to the C:\Windows\System32\drivers\etc\hosts file: 10.0.0.10 www.openlab.com Main Domain Configuration Gene ...

Posted on Mon, 07 Sep 2026 16:24:36 +0000 by Who

Core Operations for RPM-Based Package Management

Installing Packages Deploy distributions using the installation flag alongside verbose progress tracking. Override default mounting paths with the prefix parameter when necessary, though standard system directories are generally preferred to maintani dependency resolution accuracy. Force mode bypasses existing file locks, which can reconstruct ...

Posted on Mon, 07 Sep 2026 16:21:23 +0000 by sell-traffic

Elasticsearch Installation and Configuration Guide

Installation Methods Elasticsearch can be installed using several methods. This guide covers tarball, RPM, and Docker approaches. 1.1 Tarball Installation Create a setup script to automate the installation process. #!/bin/bash # setup_es.sh ES_INSTALL_DIR="/opt/elasticsearch" ES_VERSION="7.9.2" # Create installation dire ...

Posted on Mon, 07 Sep 2026 16:13:35 +0000 by tannerc

Deploy Swagger Editor on Linux with Docker and Enable Remote Collaborative Editing Without a Public IP

Swagger Editor is an open source editor for creating and editing OpenAPI-based API documentation. Its built-in visual preview and real-time validation make it much easier to write and maintain API specifications compared to plain text editing. Enabling remote access to a self-hosted Swagger Editor allows team members to access and edit API docu ...

Posted on Mon, 07 Sep 2026 16:09:53 +0000 by seularts

Essential Linux Commands for Development and System Administration

Cross-Compilation Overview Cross-compilation involves building executables on a high-performance host architecture (like x86) to run on a different target architecture (like ARM). This approach leverages the host's superior resources and tooling, streamlining the development process before deployment to resource-constrained embedded devices. C ...

Posted on Sun, 06 Sep 2026 16:21:52 +0000 by cdxrevvved

Installing Arch Linux on VMware Workstation

Preparaiton and Installation Obtain the Arch Linux ISO image from the official download page and create a new virtual machine in VMware Workstation. Verify Network Connectivity Check the network connection from the live environment. ping -c 5 archlinux.org Disk Partitioning and Formatting First, list the available block devices to identify the ...

Posted on Sun, 06 Sep 2026 16:19:20 +0000 by CreativityLost

Linux Process Lifecycle: Creation, Termination, Waiting, and Replacement

Process Creation with fork()The fork() system call is the primary mechanism for creating new processes in Linux. Defined in <unistd.h>, it creates an exact duplicate of the calling process.Return Values and Process BranchingUpon successful execution, fork() returns twice: once in the parent process with the child's Process ID (PID), and o ...

Posted on Sat, 05 Sep 2026 16:31:50 +0000 by gigantorTRON

Linux Command Line Fundamentals: A Comprehensive Reference

Linux Directory Structure The root directory (/) is the top-level directory in Linux. Unlike some operating systems, Linux has only one top-level directory: the root directory. Path relationships are described using the / separator. For example, /home/user/file.txt indicates that there is a file named file.txt in the user directory within the h ...

Posted on Sat, 05 Sep 2026 16:15:08 +0000 by linkskywalker

Deploying APITable on Linux with Docker and Configuring Remote Access via Tunneling

Introduction to APITableAPITable is an API-oriented multi-dimensional spreadsheet platform that combines visual databases, spreadsheets, real-time collaboration, and low-code development capabilities. It enables users without programming knowledge to build custom business systems and manage data efficiently through a visual interface.Deploying ...

Posted on Sat, 05 Sep 2026 16:00:37 +0000 by freedomclan

Deepin 20.9 One-Click Installation of Oracle 11GR2 Standalone

Introduction Oracle one-click installation script demonstrating the process of installing Oracle 11GR2 standalone on Deepin 20.9 (no human intervention required). Script download: Shell script for installing Oracle database More tutorials: Oracle one-click installation script collection, continuously updated Prerequisites The system group ha ...

Posted on Fri, 04 Sep 2026 16:35:30 +0000 by veroaero