Install Zoneminder on Ubuntu 18.04 with shell script Rumi, November 12, 2019November 12, 2019 This will install Zoneminder by using a shell script with one basic command (how easy is that!). You will need a Ubuntu 18.04 install with LAMP (Apache, MySQL and PHP) installed desktop or server. As an alternate you may use Mariadb in lieu of MySQL Shell script file contents: #!/bin/sh… Continue Reading
SNMP Client Configuration for Observvium Rumi, November 10, 2019 This can be placed in /etc/snmp/snmpd.conf and will provide the required parameters for Observium. This example use version 2c snmp auth. Community string: Replace community_string with your unique community string. # Listen for connections on all interfaces (both IPv4 *and* IPv6) agentAddress udp:161,udp6:[::1]:161 # Full view access view all included… Continue Reading
Install Proxmox VE 6 on Debian 10 (Buster) Rumi, October 25, 2019 Proxmox Virtual Environment (VE) is an enterprise-grade open-source server virtualization solution based on Debian Linux distribution with a modified Ubuntu LTS kernel. It allows you to deploy and manage both virtual machines and containers. This setup presumes you have a running Debian 10 Buster Linux server running. If you don’t… Continue Reading
How to Install and Configure GitLab on Ubuntu 16.04 Rumi, October 23, 2019 GitLab is an open source GIT repository manager based on Rails and developed by GitLab Inc. It is a web-based GIT repository manager that allows your team to work on code, track bugs and feature requests and to test and deploy applications. GitLab provides features like a wiki, issue tracking, code… Continue Reading
Accessing Nextcloud files using WebDAV Rumi, October 11, 2019 Mapping a network drive in Windows Go to the Start menu and click on ‘Computer’. When the ‘Computer’ file browser window opens, then click on ‘Map network drive’. Continue Reading
Add a User To Group www-data ( Apache Group ) Rumi, October 10, 2019 The procedure is as follows: Open the terminal application. Login to Ubuntu server using ssh. Add a new user named foo to www-data group by running useradd -g www-data foo command. Add an existing user bar to Apache’s www-data group on Ubuntu using usermod -a -G www-data bar command. Verify new modification on Linux… Continue Reading
Install Laravel 5 Framework on Ubuntu 18.04 & 16.04 Rumi, October 9, 2019October 9, 2019 Below is the system requirements for the installation of latest Laravel application on your system. PHP >= 7.2 OpenSSL PHP Extension PDO PHP Extension Mbstring PHP Extension Tokenizer PHP Extension XML PHP Extension Ctype PHP Extension JSON PHP Extension BCMath PHP Extension Step 1 – Install LAMP To start with… Continue Reading
Resizing a VirtualBox Virtual Hard Disk Rumi, October 6, 2019 Prerequisites Before you start this procedure you’ll need to do the following. Make sure you have the VBoxManage command-line tool installed on your host system. Download the ISO for a GParted Live CD or else a Linux Live CD using a Linux distribution that includes the GParted partition editor utility. IMPORTANT: If the virtual disk… Continue Reading
How to Setup a Multi-Protocol VPN Server Using SoftEther Rumi, September 14, 2019 SoftEther VPN is one of the world’s most powerful and easy-to-use multi-protocol VPN software, made by the good folks at the University of Tsukuba, Japan. It runs on Windows, Linux, Mac, FreeBSD and Solaris and is freeware and open-source. You can use SoftEther for any personal or commercial use free… Continue Reading
Using NGinx to serve static files and Apache for dynamic Rumi, September 6, 2019 Apache is a great web-server, but it has a pretty heavy memory footprint. It can get quite restrictive quite quickly, especially if you’re on a system will limited resources (given how many people now run on a VPS, and the poor disk IO of these systems it’s all the more… Continue Reading