Install SmokePing on CentOS 7 Rumi, August 6, 2021August 7, 2021 This tutorial explains how to install Tobias Oetiker’s Smokeping into /opt/smokeping on a CentOS 7 box. Features of Smokeping: – Best of breed latency visualisation. – Interactive graph explorer. – Wide range of latency measurement plugins. – Master/Slave System for distributed measurement. – Highly configurable alerting system. – Live Latency… Continue Reading
Configure Debian Software RAID 1 during installation Rumi, August 6, 2021 Step 1 Perform normal installation process up to the disk partitioning menu. Step 2 Select manual partitioning method in the disk partitioning menu. Step 3 Create empty partition table on each disk used to create RAID1 array. Continue Reading
Softether Linux Client using Bridged with Softether VPN Server Rumi, August 2, 2021 It’s assumed that you already have a vpn server deployed in your network, created user, password and enabled bridged network during vpn server configuration. A sample snippet of VPN Server Bridge enabled is below- So here’re the setup value- On Softether Server IP- 103.146.221.30/24 and Gateway- 103.146.221.1 Client Server IP-… Continue Reading
Install ONLYOFFICE Document Server with Nginx on Debian 10 Rumi, August 1, 2021 Step 1 – Install Packages Dependencies In this first step, we will install some packages dependencies needed by the Document Server, including the RabbitMQ-server, Redis, and Nginx-extras. Update your Debian system repository and install Document Server packages dependencies using the apt command below. sudo apt update sudo apt install redis-server… Continue Reading
Proxmox VM auto start VM after found in shutdown state Rumi, July 30, 2021July 30, 2021 I was having this strange issue, where a running busy VM stopeed all of a sudden due to high CPU or Memory overload issue. So manually had to start everythime. In order to avoid this, created a small script to start the VM in case if it’s down. #!/bin/bash #… Continue Reading
Cloning KVM virtual machine using CLI Rumi, July 21, 2021 To clone your VM and spawn new instances in KVML # virt-clone –original {Domain-Vm-Name-Here} –auto-clone OR # virt-clone –original {Domain-Vm-Name-Here} –name {New-Domain-Vm-Name-Here} –auto-clone OR # virt-clone –original {Domain-Vm-Name-Here} \ –name {New-Domain-Vm-Name-Here} –file {/var/lib/libvirt/images/File.Name.here} Continue Reading
Install and Secure Redis on CentOS 7 Rumi, July 21, 2021 Step 1 – Install and Enable Remi Repository Firstly, we will add the Remi repository to the CentOS 7 system. The Remi repository provides the latest version of Redis package for our installation. Before adding the Remi repository, let’s install the EPEL repository and yum utility packages. sudo yum install… Continue Reading
Install Lancache on Debian 10 Rumi, July 20, 2021July 20, 2021 Step 1: Installing Docker The Docker installation package available in the official Debian repository may not be the latest version. To ensure we get the latest version, we’ll install Docker from the official Docker repository. To do that, we’ll add a new package source, add the GPG key from Docker… Continue Reading
Install LookingGlass on Linux Rumi, July 19, 2021 Requirements PHP >= 5.3 PHP PDO with SQLite driver (required for rate-limit) SSH/Terminal access (able to install commands/functions if non-existent) Installations: Continue Reading
Upgrade Debian 9 to Debian 10 Rumi, July 19, 2021 Update ALL existing installed packages Before you upgrade your Debian version to 10, you must apply all security patches and pending upgrades to Debian 9 itself Hence, Type the following apt command or apt-get command: sudo apt update sudo apt upgrade sudo apt full-upgrade sudo apt –purge autoremove OR sudo… Continue Reading