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_borderAMD Ryzen 9 7950X powered VPSes now available in Frankfurt, Germany

Greetings,

We are thrilled to announce that our latest offering, the SSD KVM product line powered by AMD Ryzen 9 7950X server, is now available! Designed to revolutionize your computing experience, this cutting-edge server boasts incredible performance, advanced features, and exceptional reliability.

We understand the importance of a reliable and high-performance server infrastructure to support your business operations. The AMD Ryzen 9 7950X server has been meticulously designed to exceed your expectations and deliver unmatched performance, stability, and flexibility.

The … 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

bookmark_borderInstalling LAMP Stack with MariaDB on Ubuntu 23.04

Hello,

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

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 MySQL or MariaDB database, and dynamic content is processed by PHP.

First, … Read More

bookmark_borderInstalling PostgreSQL on Ubuntu 22.10

Hello,

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

PostgreSQL is a powerful, open-source object-relational database system with over 30 years of active development that has earned it a strong reputation for reliability, feature robustness, and performance.

Install PostgreSQL

Install PostgreSQL on Ubuntu by using the following command

apt update

apt install postgresql postgresql-contrib

Output:

root@crown:~# apt install postgresql postgresql-contrib
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The 
Read More

bookmark_borderInstalling PhpMyAdmin in Ubuntu 22.10

Hello,

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

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

Prerequisites:

Server with Apache, PHP, and MariaDB. You can find our LAMP Installation guide here.

Installing PhpMyAdmin

apt install phpmyadmin

Output:

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

bookmark_borderInstalling Linux kernel 6.0 on Ubuntu 22.10

Hello,

In this week’s feature highlight, we look at How to Install Linux kernel 6.0 on Ubuntu 22.10

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.

Step 1 – Update your system

First, Update the system … Read More