I had a miniature test lab consisting of 1 host and 1 vCenter 6.0 appliance. When I installed the VCSA on the host I was suddenly unable to connect to the console of the VMs I had previously created. When I connected via the ESXi host I was presented with the following message: Unable to Read More…
Month: July 2016
List All Files Recursively in Linux
To list all files in a directory – including subdirectories then use this command: # find /data/jord01 -type f If you want a count of all the files in a directory: # find /data/jord01 -type f | wc -l
Disable Firewalld in CentOS 7
Simple instructions on how to stop, disable and the check the status of firewall 1) Stop the firewalld service # systemctl stop firewalld 2) Disable the firewalld service from starting # systemctl disable firewalld 3) Check the status of the firewalld service # systemctl status firewalld
You must be logged in to post a comment.