No RDMs!

With the release of vSphere 6.7, there are some great new core storage functionalities. In fact, VMware’s vSphere 6.7 is the largest core storage release to date! Among some of the new features include PMEM (NVDIMMs) support, configurable rate for automatic UNMAP, UNMAP for SESparse snapshots, and support for 4Kn… Continue reading

vSphere Client no longer available starting with 6.5, Now what?

vSphere Client is no longer available starting with vSphere 6.5, but here’s a link to all the older versions: https://kb.vmware.com/selfservice/microsites/microsite.do?cmd=displayKC&docType=kc&externalId=2089791&sliceId=1&docTypeID=DT_KB_1_1 Now the HTML 5 client is embedded in both the vSphere and vCenter appliance. This allows for administration directly if certain services fail. You can access the either by https://<ip>/ui or… Continue reading

rsync commands

for local dir sync use: rsync -avzP /src/foo/ /dest/foo/ rsync -avzP –exclude “/.snapshot/” tbavtm01:/opt/ /opt/ rsync -rpzvltHP -n tfladm.blah::SmarTest_5.2.3/ /local_path/ #sync directories and delete what is not on the sender’s source. rsync -auvz -nvP –delete tbdw08:/tfl/ /nfs/disks/TBD/ # sync a specific version and subdirectories and exclude all others. rsync -rpvlt… Continue reading