Installing Node.js on Linux (Deepin V20+)
Node.js download page: https://nodejs.org/en/download/package-manager
Method 1: Manual Installation via Archive
After downloading the appropriate package from the link above, extract it to /env/nodejs (adjust the path as needed).
Create symbolic links
sudo ln -s /env/nodejs/node-v16.18.0-linux-x64/bin/npm /usr/local/bin/
sudo ln -s /env/nod ...
Posted on Wed, 02 Sep 2026 16:47:03 +0000 by phpnewbie8
Installing and Configuring Memcached on CentOS 7
Installing Memcached Dependencies
Memcached requires the libevent librrary to function properly. Install it using the package manager:
yum install libevent libevent-devel
Installing Memcached
With the dependencies in place, install Memcached:
yum install memcached
Running Memcached as a Background Service
Execute Memcached as a daemon with ap ...
Posted on Sun, 30 Aug 2026 16:17:27 +0000 by Bourgeois
Nginx Installation Guide for Linux and Windows Systems
Nginx (engine x) is a high-performance HTTP server, reverse proxy server, and IMAP/POP3/SMTP proxy server developed by Russian programmer Igor Sysoev.
Core Features
HTTP Server Capabilities
Static file serving and automatic indexing
Reverse proxy acceleration without caching
Load balancing and fault tolerance
FastCGI support with load balancin ...
Posted on Sun, 30 Aug 2026 16:01:55 +0000 by hostseller
Installing and Configuring Node Version Manager (nvm) on Windows
Downloading and Extracting nvm
Begin by downloading the Node Version Manager (nvm) package from the official GitHub repository at: https://github.com/coreybutler/nvm-windows/releases
After downloading the package, extract its contents to your desired location on your system.
Installation Process
During installation, you'll need to specify two ...
Posted on Thu, 27 Aug 2026 16:40:55 +0000 by Wolfsoap
Darknet Framework: Overview, Installation, Training, and Testing
Directory
Advantages of Darknet
Darknet Structure
Installation
Training
Detection
Advantages of Darknet
Darknet is a deep learning framework written entirely in C, offering several unique advantages over other frameworks:
Easy Installation: Simply select the desired options (CUDA, cuDNN, OpenCV, etc.) in the Makefile and run make. The instal ...
Posted on Fri, 21 Aug 2026 16:26:34 +0000 by Nikos7
Introduction to Redis Architecture, Installation, and Data Operations
SQL vs. NoSQL Database Characteristics
FeatureSQL DatabasesNoSQL DatabasesStorage ModelRelational tables with fixed schemasFlexible structures (Key-Value, Document, Column-family, Graph, Time-series)ScalabilityVertical (upgrading single hardware)Horizontal (adding more server nodes)TransactionsACID compliant, high consistencyBASE oriented, even ...
Posted on Tue, 18 Aug 2026 16:52:48 +0000 by szz
Comprehensive Guide to Jenkins Installation and Deployment
Jenkins OverviewJenkins is an open-source automation server written in Java that helps automate the building, testing, and deployment of software. It provides hundreds of plugins to support building, deploying, and automating any project. Originally known as Hudson, Jenkins has evolved into a powerful CI/CD tool.Key Features:Open-source and fre ...
Posted on Mon, 17 Aug 2026 16:16:14 +0000 by anoopd
Packaging Web Applications into Installable Desktop Clients with Electron-builder
Electron-builder transforms web projcets into distributable desktop installation packages, addressing the limitation of standalone executables that require specific folder contexts to run. This approach enhances portability for end-users.
1. Configure npm Mirrors
Set up mirrors too accelerate downloads in environments with network constraints:
...
Posted on Fri, 14 Aug 2026 16:09:43 +0000 by fotakis
Common Pitfalls When Installing Ruby on Rails
Encountered issues during Ruby on Rails installation. Slowly collecting and sharing them.
Error: Failed to build gem native extension
ERROR: Failed to build gem native extension. /usr/bin/ruby extconf.rb mkmf.rb can't find
header files for ruby at /usr/share/include/ruby.h
Solution:
On CentOS: yum install ruby-devel
On Ubuntu: apt-get instal ...
Posted on Wed, 12 Aug 2026 16:56:39 +0000 by baccarak
GitLab CE Deployment and Community Localization on CentOS
GitLab provides an open-source, self-hosted Git repository management platform built on Ruby on Rails. Accessible through a web interface, it supports both public and private projects while offering source code review, issue tracking, access control, and code snippet management.
System Requirements
Allocate at least 4 GB of RAM for the GitLab i ...
Posted on Wed, 12 Aug 2026 16:41:49 +0000 by rudibr