PasswordLess SSh Login

>ssh-keygen -t rsa (In Remote Machine) >ls /root/.ssh > id_rsa id_rsa.pub > cat id_rsa.pub >> authorized_keys > ls > id_rsa id_rsa.pub authorized_keys Now copy the id_rsa file into the $HOME/.ssh/ directory of the client machine. > ssh root@server_ip_address or Copy the id_rsa file into the any location of the client machine >ssh -i location/id_rsa root@server_ip_address

File Partition – Mount – Fdisk

In this post, I am writing how I do file partition and mounting in Linux. Step-1: check disk free by typing: df -h you will see disk and hardisk been used. if you want to add new disk fdisk -l now you will see, in any disk attached in your system fdisk /dev/your-new-disk enter m … Read more