ZFS Manager Webmin Module Rumi, January 8, 2024January 8, 2024 I found this wonderful webmin module of ZFS Manager. Kinda love its feature and functions as it literally shortened the tedious siwtches and values of zfsmanager! I’m just quoting from the developer’s readme section down here- ZFS administration tool for Webmin This is in early development, not for production. That… 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
Nextcloud Upgrade Issue via Web Rumi, January 5, 2024January 5, 2024 My Nextcloud update via web was constantly failing. So looked for alternate CLI methods. Method#1 Using occ cli sudo -u www-data php ./occ upgrade Nextcloud or one of the apps require upgrade – only a limited number of commands are available You may use your browser or the occ upgrade… Continue Reading
Restore ZFS Pool and storage data Rumi, November 23, 2023 If the disks are recognized from your OS the command: zpool import should be enough to get the pool imported and visible in your current OS. You can check the status with command zpool status You can try to import it explicitly by name zpool import ZStore P.S. Do not… Continue Reading
Create a RAID array using with mdadm Rumi, November 23, 2023 mdadm (multiple devices admin) is an extremely useful tool for running RAID systems. It’s is a tool for creating, managing, and monitoring RAID devices using the md driver. It can be used as a replacement for the raidtools, or as a supplement. You can use whole disks (/dev/sdb, /dev/sdc) or individual partitions… Continue Reading
Install Discourse on Ubuntu 22.04 Rumi, November 22, 2023 Prerequisites A server with Ubuntu 22.04 as OS Valid domain pointed to the servers IP address User privileges: root or non-root user with sudo privileges Step 1. Update the System Update the packages to their latest versions available after a fresh install of Ubuntu 22.04 sudo apt-get update -y &&… Continue Reading
Troubleshoot email on a new Discourse install Rumi, November 22, 2023 If you’ve just installed discourse, but email doesn’t seem to work. Unfortunately this means you can’t log in as an admin to finalize the install. Try the doctor cd /var/discourse ./discourse-doctor It will check several ways that your mail configuration might be broken, and offer advice. Try that first. Did… Continue Reading
Install Nginx Proxy Manager on CentOS 7 Rumi, November 22, 2023 Nginx Proxy Manager is built on docker container. So, we need to deploy Docker first. Update Docker Package Database. In a terminal window, type: sudo yum check-update Allow the operation to complete. Remove if any docker is preinstalled with your OS- sudo yum remove docker docker-client docker-client-latest docker-common docker-latest docker-latest-logrotate… Continue Reading
SSH to use two-factor authentication using Google Authenticator on Debian or Ubuntu Server Rumi, November 19, 2023 A computer running Ubuntu 16.04 LTS or above A phone running Android or iOS A configured SSH connection You should understand the danger of stolen passwords. You don’t need to know what two-factor authentication is and how it works. 🙂 Installing and configuring required packages Start a terminal session and… Continue Reading
Deploy a Laravel app on Oracle Cloud with database Rumi, November 17, 2023 Assumptions: Ubuntu 22 PHP 7.3 Laravel 5.5 Apache 2 PHP-Redis Download the public and private keys on your local machine. You have created your VM instance! Create an always free Autonomous Database [if your application uses a database] Select your desired database After creating your database, go to “DB Connection”… Continue Reading