Upgrade Ubuntu 14 to Ubuntu 16 Rumi, August 28, 2023 I had a long old ubuntu 14 into my network, had an inevitable action to upgrade it to 16. Apply the simple 2 commands to make the updaration happening- sudo do-release-upgrade Use the below command for Ubuntu 14 machines: sudo apt-get dist-upgrade Continue Reading
Install Virtualbox 5.2/6.1 on Ubuntu 16 headless mode Rumi, May 21, 2021 Install Prerequisites Before installing VirtualBox 5.2/6.1, please install these packages below if your systems don’t already have them installed…. sudo apt update sudo apt-get install gcc make linux-headers-$(uname -r) dkms Add VirtualBox Repository If you want to always get the latest versions of VirtualBox when they become available, you’ll want… Continue Reading
Install OnlyOffice Document Server on Ubuntu 16 Rumi, November 21, 2020 Step 1: Install ONLYOFFICE Document Server Please note that OnlyOffice document server requires at least 2GB of RAM. An additional 2GB of swap space is recommended. OnlyOffice document server depends on PostgreSQL, Node.js, Redis Server, RabbitMQ server and Nginx. The following steps are tested on a Ubuntu 16.04 server but should… Continue Reading
Install portainer on ubuntu 16 docker Rumi, July 30, 2020July 30, 2020 Step 1 – Install Docker on Ubuntu 16.04 LTS Before installing docker packages, please update the repository on your system and upgrade packages. sudo apt update sudo apt upgrade Now install docker using the apt command below. sudo apt install docker.io -y After the installation is complete, start docker service… Continue Reading
Installing Jitsi and Jibri on Same Machine Rumi, July 4, 2020July 14, 2020 This post is heavily inspired from this community post by https://community.jitsi.org/u/Woodworker_Life. However, the original installation document is based on typical split Jitsi on one VM and Jibri on seperate VM. A little reworked version is deployed and tested for several client based with no performance issue- this post covers a… Continue Reading
Install Pritunl on Ubuntu 16 Rumi, June 29, 2020 Update your bare-bone and freshly installed Ubuntu 16 system. sudo apt-get update && sudo apt-get upgrade Add Pritunl’s APT repository and update the package lists: echo “deb http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.0 multiverse” > /etc/apt/sources.list.d/mongodb-org-3.0.list echo “deb http://repo.pritunl.com/stable/apt trusty main” > /etc/apt/sources.list.d/pritunl.list Add repo keys for apt to validate against apt-key adv –keyserver… Continue Reading
Install Discourse Forum with Nginx on Ubuntu 16.04 Rumi, June 26, 2020 Step 1 – Install Docker on Ubuntu 16.04 The Discourse software is written in Ruby and Javascript, using PostgreSQL as the main database, and Redis as a cache and for transient data. We will install Discourse under the Docker container. The installation process will be carried out on Ubuntu… Continue Reading
Install BigBlueButton- video conferencing Rumi, May 23, 2020 Installation BigBlueButton with a single command on a Ubuntu 16 OS: If you want to set up BigBlueButton 2.2 with a TLS/SSL certificate and GreenLight, you can do this all with a single command: wget -qO- https://ubuntu.bigbluebutton.org/bbb-install.sh | bash -s — -v xenial-22 -s bbb.example.com -e info@example.com -g Troubleshoot after… 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
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