Posts in "English"

How to Install Focalboard Personal Server on Debian 12 (Without Docker)

If you’re looking to run Focalboard on a Linux server without Docker, this guide is for you. We’ll install Focalboard on Debian 12, run it as a service using systemd, and place it in a custom directory: /var/app/service/focalboard-server. All steps use the Linux user: userexample:userexample 1. Install Dependencies 2. Create the Installation Directory 3. Download… Continue reading

Switching Visual Studio Code’s Default Terminal to WSL Debian for a More Natural Coding Experience

If you’re using GitHub Copilot in Visual Studio Code on Windows, you may have noticed that the default terminal is PowerShell (PS). While that works fine for many developers, I personally find it a bit unfamiliar, especially when I’m more used to working in a Linux environment like Debian or Ubuntu. Common commands like ls,… Continue reading

Understanding ISSABEL/Asterisk Call Recording File Format

In managing VoIP-based communication systems, especially with ISSABEL or Asterisk, understanding the structure of system-generated files can greatly streamline operations and troubleshooting. One area often overlooked is the naming convention of call recording files. Consider the following filename: force-0821XXXX8663-3201-20250327-092517-1743042317.12206.wav At a glance, this might appear as a random string, but it encapsulates critical metadata that… Continue reading

Running K6 Self Hosted Load Testing in Docker and Simulating Postman Requests

Introduction K6 is a powerful self-hosted load testing tool that can be run in Docker and configured to simulate API requests, including authentication, POST requests, and JSON payloads. This guide provides a step-by-step tutorial on setting up K6 using Docker Compose and gradually moving from a simple request to a more complex Postman-like simulation. Step… Continue reading

How to Set Up MongoDB 8 Master-Slave on Debian 12 (Bookworm)

MongoDB is a super flexible NoSQL database, and if you’re running it on Debian 12 (Bookworm), setting up Master-Slave (Primary-Secondary) replication can help with scaling and data redundancy. This guide will take you through installing, running, and configuring MongoDB 8 for a master-slave setup. Prerequisites Step 1: Install MongoDB 8 on Debian 12 1.1. Update… Continue reading