sudo yum install bind-utils
nslookup gnutamil.blogspot.com
sudo shutdown -h now
cat /etc/redhat-release
ssh-copy-id -i ~/.ssh/id_rsa.pub [email protected]
# You can ssh without password now
ssh '[email protected]'
https://schier.co/blog/2013/03/13/start-virtualbox-vm-in-headless-mode.html
# Below command will list out all VMs
VBoxManage list vms
# You can start VM with UUID
VBoxManage startvm 6fb1108d-6a1f-45e4-8a45-ba71533bef3d --type headless
VBoxManage controlvm 6fb1108d-6a1f-45e4-8a45-ba71533bef3d poweroff
https://www.rootusers.com/how-to-increase-the-size-of-a-linux-lvm-by-adding-a-new-disk/
# Check the status of SELinux
sudo sestatus
sudo setenforce 0
#Open
sudo vi /etc/sysconfig/selinux
# Change
SELINUX=disabled
# Check status
sudo systemctl status firewalld
# Disable firewall
sudo systemctl disable firewalld
# Stop firewall
sudo systemctl stop firewalld