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

bookmark_borderInstalling Elasticsearch on Debian 12

Hello,

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

Elasticsearch is a highly scalable open-source full-text search and analytics engine. It allows you to store, search, and analyze big volumes of data quickly and in near real-time. Elasticsearch is an open-source developed in Java and used by many big organizations around the world.

Install OpenJDK-11

First, update the packages index and install the OpenJDK-11 with the following commands.

apt update

OpenJDK packages are … Read More

bookmark_borderInstalling Duf on Debian 12

Hello,

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

Duf also called “Disk Usage Free utility” is a free and open-source tool written in Golang. It is used to display disk usage of the system in a tabular format. It is an alternative to the df command and it can be installed on Linux, BSD, Windows, and macOS. It also displays the disk usage details in the JSON output.

In this … Read More

bookmark_bordercPanel and DirectAdmin Hardware Upgraded

Greetings,

We’re happy to announce a performance upgrade to our cPanel and DirectAdmin shared and reseller hosting available in Frankfurt, DE,

The cPanel and DirectAdmin services are now powered by SSD-based storage with an AMD Ryzen 9 5950X CPU and faster DDR4 memory. Get ready to supercharge your websites and enjoy lightning-fast performance, unmatched reliability, and exceptional value.

Unleash the Power of AMD Ryzen 9 5950X:

Our new hosting plans in  Germany location are powered by the AMD Ryzen 9 5950X … Read More

bookmark_borderInstalling Bitwarden on Debian 12

Hello,

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

Bitwarden is a free and open-source password management service that stores sensitive information such as website credentials in an encrypted vault. The Bitwarden platform offers a variety of client applications including a web interface, desktop applications, browser extensions, mobile apps, and a command-line interface.

In this article, we are going to learn how to install Bitwarden on Debian 12. So, let’s get started.

Checkout … Read More

bookmark_borderInstalling Joomla on Debian 12

Hello,

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

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 to latest,

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.… Read More

bookmark_borderInstalling Gitlab On Debian 12

Hello,

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

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 the system.

apt update

apt upgrade

Install required dependencies,

apt-get install curl ca-certificates apt-transport-https gnupg2 -y

Add Gitlab Repository using below command,

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

At the time of making … Read More

bookmark_borderInstalling Rust on Debian 12

Hello,

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

Rust is a multi-paradigm, general-purpose programming language that emphasizes performance, type safety, and concurrency. It enforces memory safety—ensuring that all references point to valid memory—without requiring the use of a garbage collector or reference counting present in other memory-safe languages.

Install Rust

Install the Rust using rustup command line tool,

Run the below command to install curl and then download the rustup command,

apt 
Read More

bookmark_borderInstalling WordPress with LAMP Stack on Debian 12

Hello,

In this week’s feature highlight, we look at How to Install WordPress with LAMP Stack on Debian 12

WordPress is one of the most popular website-building tools available out there. It is a simple way to get your online presence and perfect for those who do not know how to code and want a simple and effective way to share and build your story on the internet.

Prerequisites:

  • Root access to your Debian 12 server.
  • LAMP Stack installed and
Read More

bookmark_borderHow to Install Matomo with LAMP Stack on Debian 12

Hello,

In this week’s feature highlight, we look at How to Install Matomo with LAMP Stack on Debian 12

Matomo, formerly Piwik, is a free and open-source web analytics application developed by a team of international developers, that runs on a PHP/MySQL webserver. It tracks online visits to one or more websites and displays reports on these visits for analysis. In this article, we are going to learn how to install Matomo on Ubuntu 22.04. So, let’s get started.… Read More