Installing Docker Engine on Ubuntu Systems

Adding the Official Docker Repository Follow these steps to configure the Apt package manager with Docker's official package source. First, update the package index and install prerequisite utilities: sudo apt update sudo apt install ca-certificates curl The ca-certificates package contains root certificaets for verifying secure HTTPS connecti ...

Posted on Sun, 26 Jul 2026 17:11:17 +0000 by footiemadman007

Setting Up Remote SSH Access via NAT Traversal

Deploying a NAT Traversal Tunnel for External SSH Connectivity A NAT traversal service bridges the gap betwean a remote client and a server situated behind a firewall or NAT device. This walkthrough covers establishing an SSH pipe using a cloud-based relay platform. Provisioning the Tunnel on the Management Console Navigate to the service dash ...

Posted on Sun, 19 Jul 2026 16:49:06 +0000 by romano2717

Setting Up an Offline Ubuntu APT Mirror with Aliyun Synchronization

Environment Preparation and Tool Installation Deploying a local package repository for isolated networks requires a synchronization utility and an HTTP daemon. Install the necessary components on an Ubuntu 18.04 host using the following commands: sudo apt update sudo apt install -y apt-mirror apache2 sudo systemctl enable apache2 Configuring t ...

Posted on Sun, 19 Jul 2026 16:38:03 +0000 by zmoerf

Leishen N10 LiDAR Driver Download and Setup Guide

Compile the lsx10 Package Copy the lsx10 package into the src directory of your Catkin workspace (this example uses a workspace for an Ackermann mobile robot platform). Install required dependencies: sudo apt-get install libpcap-dev Navigate to the root of your Catkin workspace, first compile the message definitions: catkin_make -DCATKIN_W ...

Posted on Sat, 18 Jul 2026 16:24:19 +0000 by courtewing

Setting Up a Rust Project on Ubuntu and Debugging in VSCode on Windows

You have set up a Rust environment on a Ubuntu server and installed Visual Studio Code (VSCode) on your local Windows machine, connecting to the Ubuntu server via the Remote-SSH extension. This guide will walk you through creating a Rust project on Ubuntu and developing and debugging it using VSCode. Step 1: Create a Rust Project on Ubuntu Con ...

Posted on Fri, 17 Jul 2026 16:54:39 +0000 by kishan

Deploying .NET Core 3.1 with Jenkins and Docker on Ubuntu

Recent time due to the pandemic provided a lot of free time. I had previously done some learning about Docker, but kept running various commands without much progress. Recently, I revisited the topic and want to share some issues encountered along the way. Ubuntu is installed on a desktop machine, and I found virtual machines too cumbersome. I ...

Posted on Sun, 12 Jul 2026 17:34:46 +0000 by krembo99

Installing Docker on Ubuntu 22.04 Systems

Docker enables containerization of applications with their dependencies, providing a standardized deployment environment. This guide covers the installation process on Ubuntu 22.04. System Update Begin by updating the package repository and upgrading existing packages: sudo apt update sudo apt full-upgrade -y Install Required Dependencies Add ...

Posted on Sun, 12 Jul 2026 16:20:15 +0000 by nca

Parallel NFS (pNFS) Environment Setup

Note: The setup with CentOS 8 (kernel 4.18) is not viable. Switch the client and MDS to Ubuntu (tested successfully on Ubuntu 18.04 with kernel 4.15) while keeping the setup steps the same. With the rapid development of networking and parallel computing, file I/O has become a bottleneck for overall system performence. Traditional NFS versions f ...

Posted on Sat, 11 Jul 2026 16:15:43 +0000 by larrygingras

Configuring Cursor for Remote Rust Development on Ubuntu via Windows

Prerequisites & Environment Check Active SSH daemon on the target Ubuntu instance (default port 22). Verified terminal connectivity from the Windows host (cmd or PowerShell). Cursor editor installed locally. SSH Connection Routing Define a persistent connection alias to simplify workspace linking. Open or create the local SSH client confi ...

Posted on Wed, 08 Jul 2026 16:39:43 +0000 by jeanne

:Creating and Exporting a Customized Ubuntu Docker Container

Setting Up the Base Environment Begin by retrieving the latest Ubuntu image from Docker Hub: docker pull ubuntu:latest Confirm the image is available locally: docker images | grep ubuntu Initialzie a new container in detached mode with interactive terminal support: docker run -d -it --name dev_ubuntu ubuntu:latest /bin/bash Access the runnin ...

Posted on Sun, 05 Jul 2026 17:12:10 +0000 by WhiteShade6