AlmaLinux 8

AlmaLinux 8 GPG key change

AlmaLinux 8, a popular open-source operating system built from the source code of Red Hat Enterprise Linux (RHEL), made a significant change in its GPG (GNU Privacy Guard) key infrastructure starting with AlmaLinux 8. The GPG key is used to verify the authenticity of packages, ensuring that they haven’t been tampered with. What Happened with …

Node.js

How to Set Up a Node.js Application Using CloudLinux’s Node.js Selector in cPanel

If you are hosting your application on a server with CloudLinux installed and have access to cPanel, setting up a Node.js application becomes straightforward. CloudLinux’s Node.js Selector allows you to easily manage and deploy Node.js applications with various versions, without requiring advanced server configurations. Here’s a step-by-step guide to setting up a Node.js application using the Node.js Selector in cPanel. …

How to clear Default Mail Account in a cPanel Server using SSH

In every cPanel server, we can find a default mail account in the name of cPanel username. The default mail account is not used for normal mailing purposes. All the notification mails from the server are forwarded to this default mail account. cPanel also routes mails sent to the non-existing email accounts at your domain …

How To Archive Files and Directories in Linux

Introduction Archiving is the process of combining multiple files and directories (same or different sizes) into one file. On the other hand, compression is the process of reducing the size of a file or directory. Archiving is usually used as part of a system backup or when moving data from one system to another. Archives …

How To Use Rsync to Sync with a Remote System

Syncing to a remote system is trivial if you have SSH access to the remote machine and rsync installed on both sides. Once you have SSH access verified between the two machines, you can sync the dir1 folder from earlier to a remote computer by using this syntax This is called a “push” operation because it pushes a directory …

How To Use Rsync to Sync Local Directories

Introduction Rsync, which stands for “remote sync”, is a remote and local file synchronization tool. It uses an algorithm that minimizes the amount of data copied by only moving the portions of files that have changed. What Is Rsync? Rsync is a very flexible network-enabled syncing tool. Due to its ubiquity on Linux and Unix-like …