Softether with DNSMasq on Debian 11 Rumi, February 26, 2024 What is SoftEther A Free Cross-platform Multi-protocol VPN program, as an academic project from University of Tsukuba. It is a single server which support SSL-VPN (HTTPS) and 6 major VPN protocols (OpenVPN, IPsec, L2TP, MS-SSTP, L2TPv3 and EtherIP). I would like to also highlight the VPN over ICMP and VPN over… Continue Reading
Install Jitsi on Debian 11 Rumi, January 7, 2024 This article will go through the installation and configuration of the Jitsi Video Conference on the latest Debian 11 Bullseye. At the end of this guide, you will be able to create a meeting using the Jitsi Video conference. Before you get started, ensure you’ve got the following requirements: Operating… Continue Reading
Install mail server on Ubuntu or Debian Rumi, September 12, 2023 Disclaimer: This howto is tested on Ubuntu 16, 18, 20 and Debian 10, 11 edition. Installing and configuring postfix Step 1 » Assign static IP and hostname and add a host entry for the host name . Assign hostname in /etc/hostname mail.tweenpath.net Add a host entry in /etc/hosts 192.168.1.10 mail.tweenpath.net… Continue Reading
Debian 8 (Jessie) repo updated-2023 Rumi, August 23, 2023 This worked for Debian 8 (Jessie) replace original /etc/sources.list with: deb http://archive.debian.org/debian/ jessie main non-free contrib deb-src http://archive.debian.org/debian/ jessie main non-free contrib deb http://archive.debian.org/debian-security/ jessie/updates main non-free contrib deb-src http://archive.debian.org/debian-security/ jessie/updates main non-free contribapt-update It will give a keyring error. I tried both: Continue Reading
Install Proxmox 7 on Debian 12 Rumi, August 9, 2023 Install a standard Debian Bookworm, for details consider the Debian installation guide, and configure a static IP. Note: The Debian installer performs network configuration by IPv6 autoconfiguration and DHCP by default, if available. To force manual network configuration in the UEFI installer, press E and add netcfg/disable_autoconfig=true to the linux command line. For the… Continue Reading
Install phpSysInfo on Debian/Ubuntu Rumi, May 19, 2023 Log into the Debian/Ubuntu device Run the following commands in a terminal:# update repositories and install any available software updates sudo apt update sudo apt upgrade # install Apache HTTPD sudo apt install apache2 # install PHP components sudo apt install php7.3 php7.3-xml # download phpSysInfo wget https://github.com/phpsysinfo/phpsysinfo/archive/v3.3.2.zip # extract v3.3.2.zip sudo… Continue Reading
Cloudmin-GPL XEN on Debian 10 Rumi, April 7, 2023April 7, 2023 This article is inspired and prepared on the forked Cloudmin Xen script updated for Debian 10. However, the following procedures to be followed as precuationary before executing the updated script, which is available in this post in below section. PHASE-I Prepare Environment for XEN INSTALLING THE XEN HYPERVISOR AND HOST/CONTROL… Continue Reading
Install Apache2, PHP 7.2 and MariaDB 10.5 on Debian 11 Rumi, February 18, 2023 First, update all the packages of the system by below-mentioned command: sudo apt update After updating packages, now install the dependencies required by the below-mentioned command: sudo apt install software-properties-common ca-certificates lsb-release apt-transport-https Enable SURY Repository The following step is to integrate the SURY repository into our system. SURY is… Continue Reading
Installer for jitsi-meet, jigasi and jibri Rumi, November 19, 2022 Found this lovely code base (that actually worked) on github, supported on a debian 10/11 or ubuntu 20+ versions- The script (jitsi_setup.sh) can be used to install stable version of all 3 on a stand-alone server. This is simply a script version of quick-install document at https://jitsi.github.io/handbook/docs/devops-guide/devops-guide-quickstart It Installs below… Continue Reading
Disable ipv6 on Linux Machine Rumi, June 18, 2022 Disable on Centos/RHEL system: 1. Append below lines in /etc/sysctl.conf: net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1 NOTE : To disable IPv6 on a single interface add below lines to /etc/sysctl.conf : net.ipv6.conf.[interface].disable_ipv6 = 1 ### put interface name here [interface] net.ipv6.conf.default.disable_ipv6 = 1 2. To make the settings affective, execute… Continue Reading