Uncategorized

Calling All Writers: Join Our Linux Blogging Community!

Are you passionate about sharing your knowledge, experiences, and insights with the world? Do you have a knack for crafting compelling narratives and informative articles? If so, we invite you to become a part of our vibrant blogging community! Our blog is a platform dedicated to Linux ,ESXI and System Admin . We believe in …

Calling All Writers: Join Our Linux Blogging Community! Read More »

What is VMware Used For? Exploring the Benefits of VMware Technology

Do you want to know the answer to the question “What is VMware used for?” If so, you’ve come to the right place. In this blog post, I’ll explore the many benefits of VMware technology and how it can help your business. What is VMware? VMware is a cloud computing and virtualization platform developed by …

What is VMware Used For? Exploring the Benefits of VMware Technology Read More »

Linux Quiz

Test you Linux knowledge with some pretty good and necessary Linux questions . We have added only those question which you are going to use in your daily task either you are a profession or an just an Linux user . Linux is an very good option if you are looking a career in a …

Linux Quiz 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 »