bookmark_borderHow to Install Flarum on Ubuntu 20.04

Hello,

In this week’s feature highlight, we look at How to Install Flarum on Ubuntu 20.04

Flarum is a free, open-source, and next-generation forum application that helps you to build your online discussion forum. Flarum looks and feels great out of the box. The user interface is streamlined so you can spend less time clicking and more time talking.

Update the system.

apt update 

apt upgrade

Install LAMP Server

apt-get install apache2 mariadb-server php8.0 libapache2-mod-php8.0 php8.0-common php8.0-mbstring php8.0-xmlrpc php8.0-soap php8.0-mysql
Read More

bookmark_borderInstalling Glances on AlmaLinux 8

Hello,

In this week’s feature highlight, we look at How to Install Glances on AlmaLinux 8

Glances is a cross-platform monitoring tool that aims to present a large amount of monitoring information through a curses or Web-based interface.

Features

  • CPU related information such as idle, iowait, usage, and more
  • Memory-related information such as usage, free, SWAP, and more.
  • Network usage information based on interfaces.
  • Disk usage information.
  • Lists processes resources used (sortable by resources).

Update the System.

yum update

Enable … Read More

bookmark_borderInstalling Kernel 5.x on AlmaLinux 8

Hello,
In this week’s feature highlight, we look at How to Install Kernel 5.x on AlmaLinux 8

Kernel is central component of an operating system that manages operations of computer and hardware. It basically manages operations of memory and CPU time. It is core component of an operating system. Kernel acts as a bridge between applications and data processing performed at hardware level using inter-process communication and system calls.

Prerequisites

  • Access to AlmaLinux command line terminal.
  • Root privileges or Sudo
Read More

bookmark_borderInstalling Glances on RockyLinux

Hello,
In this week’s feature highlight, we look at How to Install Glances on RockyLinux

Glances is a cross-platform monitoring tool that aims to present a large amount of monitoring information through a curses or Web-based interface.

Features

  • CPU related information such as idle, iowait, usage, and more
  • Memory-related information such as usage, free, SWAP, and more.
  • Network usage information based on interfaces.
  • Disk usage information.
  • Lists processes resources used (sortable by resources).

Update the System.

yum update

Enable the … Read More

bookmark_borderInstalling Drupal on Alma Linux 8

Hello,
In this week’s feature highlight, we look at How to Install Drupal on Alma Linux 8

Drupal is a Content Management System (CMS) to maintain and publish an internet website. It’s an open-source content management system (CMS) with a large, supportive community. It’s used by millions of people and organizations around the globe to build and maintain their websites.

Update the system.

yum update -y 

Install the MariaDB Server

Install the MariaDB Server by running the following command,

dnf 
Read More

bookmark_borderInstalling Ghost on Alma Linux 8

Hello,
In this week’s feature highlight, we look at How to Install Ghost on Alma Linux 8

Ghost is a free and open source blogging platform written in JavaScript and distributed under the MIT License, designed to simplify the process of online publishing for individual bloggers as well as online publications.

We will now begin with the installation, login as root user on the server.

Update the System.

yum update -y

Set your SELinux to permissive mode.

setenforce 0

sed 
Read More

bookmark_borderInstalling MongoDB 5 on AlmaLinux 8

Hello,
In this week’s feature highlight, we look at How to Install MongoDB 5 on AlmaLinux 8

MongoDB is a NoSQL database that stores data as JSON-like documents. Documents store related information together and use the MongoDB query language (MQL) for access and it is also called GriddFS which performs load balancing and data replication features over multiple machines for storing files.

Installing MongoDB

Before installing MongoDB, we need to add a repository manually since it is not present in … Read More

bookmark_borderInstalling Netdata on Rocky Linux 8

Hello,
In this week’s feature highlight, we look at How to Install Netdata on Rocky Linux 8

Netdata is an Open Source real-time server monitoring tool. It collects real-time data like CPU usage, RAM usage, Load, SWAP usage, Bandwidth usage, Disk usage, etc.

Installing EPEL Repo

Install EPEL Repo by running following command.

dnf install epel-release -y

Output:

[root@server ~]# dnf install epel-release -y
Rocky Linux 8 - AppStream                       959 kB/s | 7.8 MB     00:08
Rocky Linux 8 - BaseOS                          
Read More

bookmark_borderInstalling Gitlab on Ubuntu 21.04

Hello,
In this week’s feature highlight, we look at How to Install Gitlab on Ubuntu 21.04

GitLab is a web-based DevOps lifecycle tool that provides a Git repository manager providing wiki, issue-tracking, and continuous integration and deployment pipeline features, using an open-source license, developed by GitLab Inc.

Update System.

apt update

apt upgrade -y

Install the Gitlab package dependencies.

apt-get install -y curl openssh-server ca-certificates

Add the GitLab Repository.

curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.deb.sh | sudo bash

Install Gitlab

Download Gitlab package … Read More

bookmark_borderInstalling Focalboard on Ubuntu 20.04

Hello,
In this week’s feature highlight, we look at How to Install Focalboard on Ubuntu 20.04

Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana. It’s a project management tool that helps define, organize, track and manage work across teams, using a familiar kanban board view

Update the System.

apt update

apt upgrade

Install Focalboard

Download the focalboard packages and then move it into /opt/focalboard directory.

wget https://github.com/mattermost/focalboard/releases/download/v0.9.2/focalboard-server-linux-amd64.tar.gz
tar -xvzf focalboard-server-linux-amd64.tar.gz
sudo mv focalboard /opt

Install NGINX

Read More