bookmark_borderProtecting SSH With Fail2Ban on Ubuntu 23.04

Hello,

In this week’s feature highlight, How to Protect SSH With Fail2Ban on Ubuntu 23.04

Fail2Ban is an intrusion prevention framework written in the Python programming language. It works by reading SSH, ProFTP, Apache logs, etc. And uses iptables profiles to block brute-force attempts.

Installing the Fail2Ban package

Check for system updates and install them.

apt update -y

apt upgrade -y

Command to install the Fail2Ban

apt install fail2ban -y

Start the fail2ban using below command,

systemctl start fail2ban

Enable … Read More

bookmark_borderInstalling Nextcloud for Ubuntu 23.10 using Snap

Hello,

In this week’s feature highlight, we look at How to Install Nextcloud for Ubuntu 23.10 using Snap

Login to ubuntu 23.10 sever.

Run the following command to download and install Nextcloud.

snap install nextcloud

Output:

root@crown:~# sudo snap install nextcloud
nextcloud 23.0.2snap1 from Nextcloud✓ installed

Now type your IP address in the URL to launch the Nextcloud.

http://server_IP

You will have to create an admin account — Enter the username and password which you want to set.

images
Read More

bookmark_borderInstalling and Configure Bitwarden on Ubuntu 23.10

Hello,

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

Bitwarden is an open-source password management platform that empowers individuals and organizations to securely store, manage, and share sensitive information, such as passwords, credit card details, and secure notes. With growing concerns about online security and data breaches, Bitwarden provides a reliable and user-friendly solution to the complex problem of password management.

Features of Bitwarden

  • Secure Password Storage: Bitwarden uses end-to-end encryption
Read More

bookmark_borderInstalling MediaWiki on Ubuntu 23.10

Hello,

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

MediaWiki is the free open-source wiki software used to power Wikipedia and thousands of other wikis. The contributions of hundreds of individual developers have helped make it a feature-rich, secure and scalable platform capable of powering some of the largest collaboratively edited reference projects in the world.

Update the System

apt update -y

apt upgrade -y 

Install LAMP Stack

Install Linux(Apache, PHP, and MySQL) … Read More

bookmark_borderChristmas Greetings

Hey There!

‘Tis the season to be jolly, and at CrownCloud, we’re filled with gratitude for our wonderful community. 🎁✨ As we celebrate the magic of Christmas, we want to express our deepest thanks for your continued support.

During this festive season, our support team will be online throughout the week, ready to assist you.

May your holiday be filled with the warmth of family, the laughter of friends, and the joy that comes from cherished moments.

Here’s to a … Read More

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