Mastering Docker End-to-End: Container Management, Nginx Homepage Customization, BusyBox Tool Practice, and Tencent Cloud Repository Deployment

Mastering Docker End-to-End: Container Management, Nginx Homepage Customization, BusyBox Tool Practice, and Tencent Cloud Repository Deployment

Abstract This article focuses on practical operations with Docker, introducing the usage of the docker ps container command, covering the acquisition, operation, and homepage modification of the Nginx image, explaining the features, installation, uninstallation, and operation of the BusyBox tool, and also involving the pulling and pushing of images to Hub and the creation and … Read more

Method for Setting Up a TCP/IP Experiment Server (Part 1)

Method for Setting Up a TCP/IP Experiment Server (Part 1)

1. Add a network card to the virtual machine, bridging it to the physical network for external communication 2. Add another network card for communication between the host and the virtual machine 3. Change the network card name to eth cd /etc/sysconfig/network-sripts/ mv ifcfg-ens33 ifcfg-eth0 vim ifcfg-eth0, change both device and name to eth0, as … Read more

Install Windows in the Linux Start Menu in 10 Minutes! WinBoat Hits 3.7k Stars, Office Launches Instantly

Install Windows in the Linux Start Menu in 10 Minutes! WinBoat Hits 3.7k Stars, Office Launches Instantly

Introduction: Are you still running Windows in full screen on VirtualBox just to use Office?WinBoat offers a new solution: Docker containers + FreeRDP remote application protocol, projecting Win32 applications directly as native Linux windows. In just 6 weeks, GitHub stars skyrocketed from 0 to 3.7k, with over 50 daily active issues and PRs, consistently ranking … Read more

MCP Tool Container Virtualization

MCP Tool Container Virtualization

MCP (Model Context Protocol) is a standardized interface and framework that allows LLMs to seamlessly interact with external tools, resources, and environments. It can be seen as a universal adapter between LLMs and external services, enabling mutual understanding without the need for custom glue code development.Running the MCP server (and its tools) directly on the … Read more

Seamlessly Run Windows Applications on Linux: WinBoat Gains 1.7k Stars on GitHub

Seamlessly Run Windows Applications on Linux: WinBoat Gains 1.7k Stars on GitHub

Disclaimer:The tools and projects shared by this public account are sourced from the internet and are intended for security research and learning purposes only. Please delete them within 24 hours after downloading and testing, and they must not be used for any commercial purposes. Any other use will be the sole responsibility of the user, … Read more

Linux Learning Notes – cgroup (Part 2)

Linux Learning Notes - cgroup (Part 2)

Control Groups (cgroups) are a feature of the Linux kernel used to limit, record, and isolate the resource usage (CPU, memory, disk I/O, network, etc.) of process groups. cgroup v2 is the second generation implementation of cgroups, providing a more unified and consistent interface. 1. Core Concepts of cgroup v2 Hierarchy v2 adopts a single … Read more

Installing Dify on Linux (Docker | Offline Image Resources Included)

Installing Dify on Linux (Docker | Offline Image Resources Included)

1. What Can Dify Do? • Quickly build production-level AI applications (chatbots/intelligent assistants/knowledge base Q&A, etc.) • Achieve LLM workflow orchestration, knowledge base management, and multi-model integration without coding • Lower the development threshold for AI applications, focusing on business logic 2. Tutorial Environment • To ensure this article remains useful for as long as … Read more

JLink: Building a Lightweight Java Runtime

JLink: Building a Lightweight Java Runtime

1. Background and Issues The traditional JDK/JRE installation packages are large (hundreds of MB), containing many modules that are not needed by applications. For example, a small application that only depends on java.base and java.sql must carry the entire Java runtime, which not only wastes storage but also affects the distribution and startup speed of … Read more

Automated Docker Deployment Script on Rocky Linux 9

Automated Docker Deployment Script on Rocky Linux 9

Note: This script is currently limited to <span>Rocky Linux 9</span> and has not been tested on other system versions. Future updates will enhance the script’s compatibility, robustness, and options. The installed <span>Docker</span> version defaults to the latest version. 🛠️ Preparation Work A minimal installation of the Rocky Linux 9 operating system A stable internet connection … Read more