bookmark_borderInstalling GNOME GUI on Rocky Linux 9

Hello,

In this week’s feature highlight, we look at How to Install GNOME GUI on Rocky Linux 9

To use Rocky Linux 9 in graphical mode, you will need to install the GNOME package on the system to enable GUI. We will go through the steps required to install GNOME GUI.

Check the available package groups for Rocky Linux 9.

dnf group list

Output:

[root@server ~]# dnf group list
Last metadata expiration check: 0:00:23 ago on Wed 20 Jul 2022 
Read More

bookmark_borderInstalling WordPress on AlmaLinux 9

Hello,

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

WordPress is a Content Management System (CMS), a platform you can use to build and maintain a website without any knowledge of coding. This software enables you to customize just about every aspect of your site.

Prerequisites:

WordPress requires LAMP stack installed and running

For detailed installation, refer to LAMP Stack on Almalinux 9

Update Firewall Settings

The below commands will open or allow … Read More

bookmark_borderInstalling Webmin on AlmaLinux 9

Hello,

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

Webmin is a web-based dashboard that allows sysadmins to manage Linux and Unix-like systems (especially servers). Webmin allows system administrators to manage user accounts, update packages, system log files, configure firewalls, email, database, postfix, etc.

First, check for any pending system updates,

dnf update

install Webmin using the following command:

yum install webmin

Access the Webmin Web Interface.

firewall-cmd --add-port=10000/tcp --permanent
firewall-cmd --reload

To … Read More

bookmark_borderInstalling AlmaLinux 9

Hello,

In this week’s feature highlight, we look at How to Install AlmaLinux 9.

Login to your Panel (https://crownpanel.com/)

To start the installation, first mount the AlmaLinux ISO.

Mounting the AlmaLinux ISO Image

To mount the ISO select the CD-ROM Tab and select the AlmaLinux ISO from the drop-down named AlmaLinux 9 x86_64 and click on Mount button.

Please note: The ISO mount may take upto 2-3 minutes to complete.

ab

Once the ISO has mounted (Task Log tab … Read More

bookmark_borderInstalling Netdata on Ubuntu 22.04

Hello,

In this week’s feature highlight, we look at How To Install Netdata on Ubuntu 22.04

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.

Update the Server

Let us update the server using the following command,

apt update -y

apt upgrade -y

Download Netdata Package

Install Netdata on the server using below command.

apt install netdata -y

The -y option … Read More

bookmark_borderUbuntu 22.04 Template now available for KVM Based VPS

Hey There!
We’re happy to announce that Ubuntu 22.04 is now available as an operating system choice on our KVM-based plans in our control panel.

Please refer to the following guide to install the operating system on KVM based VPSes using our Control Panel, Click Here.

Stay tuned for further updates!

Follow us on CrownCloud BlogTwitter, and Facebook for updates regarding current offers and other updates.… Read More

bookmark_borderInstalling PostgreSQL on Ubuntu 22.04

Hello,
In this week’s feature highlight, we look at How To Install PostgreSQL on Ubuntu 22.04

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 on Ubuntu

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

bookmark_borderInstalling LEMP Stack (Nginx, MariaDB, PHP8.1) on Ubuntu 22.04

Hello,
In this week’s feature highlight, we look at How to Install LEMP Stack (Nginx, MariaDB, PHP8.1) on Ubuntu 22.04

LEMP Stack is a combination of free, open source software. The acronym LEMP refers to the first letters of Linux (Operating system), Nginx Server, MySQL (database software), and PHP, PERL or Python, principal components to build a viable general purpose web server.

Updating the system

We first update the system to make sure that all our installed packages are up … Read More

bookmark_borderInstalling LAMP Stack with MariaDB on Ubuntu 22.04

Hello,

In this week’s feature highlight, we look at How to Install LAMP Stack with MariaDB on Ubuntu 22.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_borderHow to Install WordPress on Ubuntu 22.04

Hello,

In this week’s feature highlight, we look at How to Install WordPress on Ubuntu 22.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 22.04 server.
  • LAMP Stack installed and running. Learn how
Read More