Essential for Automation Test Engineers: 20 Linux Commands to Navigate Servers with Ease

Essential for Automation Test Engineers: 20 Linux Commands to Navigate Servers with Ease

Last week, our automation pipeline suddenly failed, and the error message was simply: Connection refused The developer said: “The service is down, go check the server.” I logged into the test machine and resolved it with three commands: ps -ef | grep order-service # Check processesnetstat -tunlp | grep 8080 # Check porttail -f /var/log/order.log … Read more

.NET Web Application Linux Deployment Guide: From Environment Setup to Production Launch

.NET Web Application Linux Deployment Guide: From Environment Setup to Production Launch

Introduction Background and Advantages <span>ASP.NET Core</span> has supported cross-platform deployment since <span>.NET Core 1.0</span> (2016), and deploying on <span>Linux</span> offers the following advantages: • High Performance: <span>Linux</span> servers (such as <span>Ubuntu</span>) have low resource consumption, suitable for high concurrency. • Cost-Effective: Open-source operating system reduces server costs. • Ecosystem Support: Supports <span>MySQL, Docker, Nginx</span>, compatible … Read more

Local Cloud-Native Practices for Rust Applications: Colima + K8s + Multi-Architecture CI/CD Deployment Process

Local Cloud-Native Practices for Rust Applications: Colima + K8s + Multi-Architecture CI/CD Deployment Process The Colima environment naturally supports integration with Kubernetes, allowing for the simulation of a production-grade K8s cluster on local machines. Utilizing the CI capabilities of GitHub Actions, kubectl can easily pull images from GHCR or Docker Hub and run them locally. … Read more

Agno-Go v1.2.2 Released: The Perfect Fusion of Inference Models, Batch Operations, and Vector Databases

Agno-Go v1.2.2 Released: The Perfect Fusion of Inference Models, Batch Operations, and Vector Databases October 18, 2025 – We are excited to announce the official release of Agno-Go v1.2.2! This version marks a significant step forward in building a high-performance multi-agent system framework. v1.2.2 brings several groundbreaking feature upgrades, including revolutionary support for inference models, … Read more

Introduction to Ansible Automation: Practical Experience in Batch Deployment of Web Servers

Introduction to Ansible Automation: Practical Experience in Batch Deployment of Web Servers

Do you remember that night when you were woken up by a phone call at 3 AM? Twenty servers in the production environment needed urgent configuration updates, and you had to log in via SSH one by one, repeating the same commands. Two hours later, as you dragged your exhausted body to complete the task, … Read more

How to Implement Continuous Integration and Deployment for Siemens PLC?

How to Implement Continuous Integration and Deployment for Siemens PLC?

Click the blue text to follow us How to implement continuous integration and deployment based on Siemens PLC? These DevOps practices make your automation project development more efficient and agile! Hello everyone, I am Hanhan. Today we are going to discuss an interesting topic – how to apply continuous integration and continuous deployment (CI/CD) from … Read more

IAR Platform Now Offers Production-Level Support for Zephyr RTOS

IAR Platform Now Offers Production-Level Support for Zephyr RTOS

Uppsala, Sweden, July 8, 2025 – IAR, a global leader in embedded systems development software solutions, announced that its embedded development platform has officially launched production-level support for Zephyr RTOS. This support is fully available starting from IAR’s Arm Development Toolchain v9.70. This advancement provides a solid assurance for developers looking to adopt Zephyr RTOS … Read more

In-Depth Yocto: Building an Enterprise-Level Embedded Linux Build Platform

In-Depth Yocto: Building an Enterprise-Level Embedded Linux Build Platform

In the previous issue, we detailed the Buildroot build system, which is simple and efficient, suitable for quickly generating embedded Linux images. However, as systems become increasingly complex, with fine-grained component dependencies and the need for modularity and long-term maintenance in team development, Buildroot gradually shows its limitations. This issue focuses on the Yocto Project—a … Read more

Makefile Guide for Go Projects

Makefile Guide for Go Projects

This article is a Makefile guide for Go projects. Hello everyone, my name is Xie Wei, and I am a backend developer using the Go language. The theme of this article is: Writing a Makefile guide suitable for Go projects. 1. Prerequisites: Familiarity with Makefile Experience in writing projects in Go During the project development … Read more