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

bookmark_borderHow to Install Docker On Debian 12

Hello,

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

What is docker?

Docker is basically a container engine that uses the Linux Kernel in order to create containers on top of an operating system. Which is used to create, deploy and run the applications.

Install Docker

Install the docker using the apt package manager.

apt install docker.io docker-compose

Start and enable the docker

systemctl enable --now docker

Check Docker service

systemctl status docker
Read More

bookmark_borderHow to Install LAMP Stack on Debian 12

Hello,

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

A LAMP stack is a group of open-source software that is typically installed together to enable a server to host dynamic websites and web apps. This term is actually an acronym which represents the Linux operating system, with the Apache web server. The site data is stored in a MariaDB database, and dynamic content is processed by PHP.

Update Debian 12

apt update 
Read More

bookmark_borderInstalling Debian 12

Hello,

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

  • Login to CrownPanel for managing the server.
  • To start the installation, you will have to mount the Debian 12 ISO. To mount the ISO click on CD-ROM and then select the required ISO from the drop-down menu and click on Mount button(It will take 2-3 minutes) Deb12installer
  • Once the ISO has mounted (Task Log tab will show the status of the task), navigate to “Power Control” tab
Read More

bookmark_borderUpgrading Debian 11 to Debian 12

Hello,

In this week’s feature highlight, we look at How to Upgrade Debian 11 to Debian 12

It is important to backup all your data before proceeding with the upgrade so that you can always revert to the previous version if anything goes wrong during the upgrade.

Upgrade all your existing packages

Upgrade all your existing packages. Use the following code to upgrade the packages.

apt update && apt upgrade -y

Modify package repository

Before you change anything, make sure … Read More

bookmark_borderEnabling BBR on Ubuntu 23.04

Hello,

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

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 WordPress with LEMP Stack on Ubuntu 23.04

Hello,

In this week’s feature highlight, we look at How to Install WordPress with LEMP Stack on Ubuntu 23.04

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 Ubuntu 23.04 server.
  • LEMP Stack installed and
Read More

bookmark_borderInstalling Docker On Ubuntu 23.04

Hello,
In this week’s feature highlight, we look at How to Install Docker On Ubuntu 23.04

What is docker?

Docker is basically a container engine which uses the Linux Kernel in order to create the containers on top of an operating system. Which is used to create, deploy and run the applications.

Install Docker

Install the docker using the apt package manager.

apt install docker.io

Start and enable docker

systemctl enable --now docker

Check Docker service status

systemctl status docker
Read More