bookmark_borderInstalling PHP 8.3 on Debian 12

Hello,
In this week’s feature highlight, we look at How to Install PHP 8.3 on Debian 12

PHP 8.3 is a major update of the PHP language. It contains many new features, such as explicit typing of class constants, deep-cloning of readonly properties and additions to the randomness functionality. As always it also includes performance improvements, bug fixes, and general cleanup.

To install a specific version of PHP on Debian 12, you can use the ondrej/php repository, which provides up-to-date … Read More

bookmark_borderInstalling Uptime-Kuma Monitoring Tool On Ubuntu 23.10

Hello,

In this week’s feature highlight, we look at How to Install Uptime-Kuma Monitoring Tool On Ubuntu 23.10

Uptime-Kuma is an Open-Source monitoring tool, It Monitors uptime for HTTP(s) websites, TCP Ports, and Docker containers and retrieves information such as DNS records, you can receive notification alerts of downtime and you can create custom status page for your users depends on usage.

Prerequisite

Running

Read More

bookmark_borderInstalling CSF on Ubuntu 23.10

Hello,

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

ConfigServer Firewall, commonly known as CSF, is a popular and free security firewall software for Linux-based systems, including Ubuntu. CSF helps administrators configure and manage the iptables firewall rules, making it easier to secure a server by allowing or blocking specific network traffic. CSF provides features such as connection tracking, set up rules for filtering incoming and outgoing network traffic. It also includes tools … Read More

bookmark_borderInstalling Drupal on Ubuntu 23.10

Hello,

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

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

Let us update the system packages to the latest by running the below commands,

apt update -y 

apt 
Read More

bookmark_borderInstalling PhpMyAdmin in Ubuntu 23.10

Hello,

In this week’s feature highlight, we look at How to Install PhpMyAdmin in Ubuntu 23.10

In this guide, we will demonstrate how PhpMyAdmin is installed on a Ubuntu 23.04 system. PhpMyAdmin requires a standalone Database or as part of the LEMP stack, installed and running on the system beforehand.

Prerequisites:

Server with Nginx, PHP, and MariaDB. You can find our LEMP Installation guide here.

Installing PhpMyAdmin

apt install phpmyadmin

Output:

root@ubuntu23:~# apt install phpmyadmin
Reading package lists... Done
Read More

bookmark_borderInstalling Joomla on Ubuntu 23.10

Hello,

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

Joomla is a free and open-source content management system for publishing web content on websites. Web content applications include discussion forums, photo galleries, e-Commerce, and user communities, and numerous other web-based applications.

Update the System,

apt update

apt upgrade

LAMP Stack Configuration

Joomla like any other CMS application, will require a web server with Database running on the system to support it. And since … Read More

bookmark_borderEnabling BBR on Ubuntu 23.10

Hello,
In this week’s feature highlight, we look at How to Enable BBR on Ubuntu 23.10

BBR stands for Bottleneck Bandwidth and RTT is a congestion control system. You can enable TCP BBR on your Linux desktop to improve the overall web surfing experience. By default, Linux uses the Reno and CUBIC congestion control algorithm.

Enabling BBR in Linux can help improve network performance by optimizing bandwidth utilization, reducing latency, and mitigating packet loss. We’ll show you how this is … Read More

bookmark_borderInstalling Node.js on Ubuntu 23.10

Hello,
In this week’s feature highlight, we look at How to Install Node.js on Ubuntu 23.10

Node.js is an open-source, server-side runtime environment that allows you to run JavaScript on the server. It is designed to be efficient and lightweight and is commonly used to build scalable network applications and web services.

To install Node.js on an Ubuntu 23.10 server, you can follow these steps:

Login to the Ubuntu 23.10 server and update the package repository information.

apt update

Install

Read More

bookmark_borderInstalling GCC on Debian 12

Hello,

In this week’s feature highlight, we look at How to Install GCC on Debian 12

GCC, the GNU Compiler Collection is a compiler system developed to support various programming languages. GCC is the standard compiler for most projects related to GNU and Linux, including the Linux kernel.

Installing GCC on Debian

Debian repositories contain build-essential package which contains the GCC compiler, g++ and make

Debian an existing system by running following command

apt upgrade 

apt install build-essential

If you … Read More

bookmark_borderInstalling and use PHP Composer on Debian 12

Hello,

In this week’s feature highlight, we look at How to Install and use PHP Composer on Debian 12

Composer is a dependency manager for the programming language, PHP. It functions as some sort of project manager that helps the programmer manage dependencies that will be used on a project-to-project basis.

Installing Composer on Debian 12

First, need to check for any pending system updates,

apt update

apt upgrade

Install the required packages.

apt install wget php-cli php-zip unzip

Download … Read More