explinux

How to Check and Disable Selinux in Centos7/8, RHEL 7/8

How to check and disable Selinux  in Centos7/8, RHEL 7/8 SELinux – Security-Enhanced Linux It is a security architecture that gives you more control over the system that others can access. It was integrated into Linux in 2003. SELinux is enabled by default and you can check SELinux status with the command sestaus. SELinux usage …

How to Check and Disable Selinux in Centos7/8, RHEL 7/8 Read More »

How to Use and Enable/Disable Firewall in Centos7/8, RHEL 7/8

How to Check and Disable Firewall  in Centos7/8, RHEL 7/8 As we know the firewall is very important for our system or server security. In some cases where you have an external firewall in your network or you are using a different firewall, you need to disable the firewall. Few sysadmins disable the firewall for …

How to Use and Enable/Disable Firewall in Centos7/8, RHEL 7/8 Read More »

SSH Without Password in Linux/RHEL/Centos/Ubuntu

SSH Without Password in Linux/RHEL/Centos/Ubuntu Easy Steps Here in our article, we will show you how to log in to another Linux machine using ssh secure key without a password. This ssh passwordless authentication will work on almost every Linux distribution RHEL, Centos, Fedora, Ubuntu. Our Setup In this setup, we will take the example …

SSH Without Password in Linux/RHEL/Centos/Ubuntu Read More »

Shell Script for SSH Without Password in Linux/RHEL/Centos/Ubuntu

#!/bin/bash#Script for passwordless authentication for remote host #Author: explinux#Date:19june2020echo “enter ip : “read ipecho “enter user”read userssh $user@$ip mkdir -p .sshcat .ssh/id_rsa.pub | ssh $user@$ip ‘cat >> .ssh/authorized_keys’ssh $user@$ip “chmod 700 .ssh; chmod 640 .ssh/authorized_keys”ssh $user@$ip How to use the script:  Related Article : ssh Without Password in Linux 2020.html use vi editor and create a file …

Shell Script for SSH Without Password in Linux/RHEL/Centos/Ubuntu Read More »

What is Linux

If you are using windows laptop and searching this then Linux is the most popular operating system among all devices and datacenter. That means Window is popular only on your home PC otherwise king is Linux. What is Linux? Linux is an operating system like Windows, Mac, Linux is an Operating system. Linux works the …

What is Linux Read More »

How To Reduce vdi Size in VirtualBox and Free Disk Unused Space | Linux Servers

How To Reduce vdi Size in VirtualBox and Free Disk Unused Space VirtualBox is an oracle hypervisor that we install in our base machine or laptop to use another guest OS in this. Virtual box and we always select dynamically allocated disk which will increase as we add data in guest OS. But it does …

How To Reduce vdi Size in VirtualBox and Free Disk Unused Space | Linux Servers Read More »