Ubuntu 24.04 LTS Setup and Hardware Optimization for ThinkPad X1 Carbon Gen 6

Hardware Specification ThinkPad X1 Carbon (6th Gen, 2018) Intel Core i5-8350U, 16 GB RAM, 512 GB SSD Ubuntu 24.04.4 LTS Base Installation Multi-boot USB creation tools such as Ventoy simplify installing Ubuntu alongside existing operating systems. Once installed, most hardware functions out of the box, though several components benefit from m ...

Posted on Mon, 03 Aug 2026 16:24:45 +0000 by MBenefactor

Configuring WiFi on ELF2 Development Board Running Ubuntu System with Intel AX200

Configuring WiFi on ELF2 Development Board Running Ubuntu System with Intel AX200 Before proceeding with WiFi configuration, you need to flash the Ubuntu system onto the development board. There are two approaches available: Method 1: Copy kernel modules from an existing buildroot system's /usr/lib/modules directory to the corresponding locatio ...

Posted on Sun, 02 Aug 2026 16:17:56 +0000 by darkjedig

Building OpenCV 4.8 from Source on Ubuntu Systems

Downloading OpenCV 4.8 Source Execute the following commands in a terminal to download and extract the source code: wget -O opencv-4.8.zip https://github.com/opencv/opencv/archive/4.8.0.zip unzip opencv-4.8.zip -d opencv-4.8 Installing Build Dependencies Install required compliers and libraries using apt: sudo apt update sudo apt install -y bu ...

Posted on Fri, 31 Jul 2026 16:01:36 +0000 by Rithiur

Ubuntu Server Performance Monitoring with Prometheus and Grafana

Setting Up Server Performance Monitoring For effective server performance monitoring, implementing specialized tools becomes essential. Two primary approaches were evaluated: InfluxDB + Telegraf + Grafana Prometheus + Node Exporter + Grafana The InfluxDB documentation appeared inconsistent across versions, making Prometheus the preferred choi ...

Posted on Mon, 27 Jul 2026 16:45:31 +0000 by liquidchild

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