How to build Perl module rpm file with cpanspec on RHEL/CentOS Linux

To build a Perl module RPM file using cpanspec on RHEL/CentOS Linux, you can follow the steps below: Install cpanspec: # yum install cpanspec Download the Perl module from CPAN: # cpan <Module-Name> Convert the Perl module to an RPM package: # cpanspec <Module-Name> Build the RPM package: # rpmbuild –define “_sourcedir `pwd`” –define “_srcrpmdir … Read more

How to install Skype application on Linux

There are several ways to install Skype on Linux, including the following: Install using Snap: You can install Skype on Linux using the Snap package manager. To do this, follow these steps: sudo snap install skype –classic Install using Flathub: Flathub is another package manager for Linux, and it provides a Skype package. To install … Read more

How To Install Nginx on SUSE Linux Enterprise server 12

To install Nginx on SUSE Linux Enterprise server 12, follow these steps: Add the Nginx repository to the system: sudo zypper addrepo http://nginx.org/packages/sles/12/x86_64/ nginx Refresh the package list: sudo zypper refresh Install Nginx: sudo zypper install nginx Start the Nginx service: sudo systemctl start nginx Enable Nginx to start automatically at boot time: sudo systemctl … Read more

How to setup and configure network bridge on Debian Linux

To set up and configure a network bridge on Debian Linux, follow these steps: Install the required packages: sudo apt-get update sudo apt-get install bridge-utils -y Create a backup of your network interfaces configuration file: sudo cp /etc/network/interfaces /etc/network/interfaces.bak Edit the network interfaces configuration file: sudo nano /etc/network/interfaces Define the network bridge, replace eth0 with … Read more

How to install KVM server on Debian 9/10 Headless Server

To install KVM server on a Debian 9/10 headless server, follow these steps: Install the required packages: sudo apt-get update sudo apt-get install qemu-kvm libvirt-daemon-system libvirt-clients bridge-utils virtinst -y Add your user account to the libvirtd group: sudo adduser $USER libvirtd Verify that the KVM module is loaded: lsmod | grep kvm Start the libvirtd … Read more