VMware VMFS Versioning

Posted on August 4th, 2010 in Tips, vSphere | No Comments »

VMware VMFS VMware VMFS (Virtual Machine File System) is VMware, Inc.’s cluster file system designed for VMware Infrastructure or VMware vSphere. Basically VMFS used to store virtual machine disk images, including snapshots.

According to Wikipedia,

  • VMFS version 1 was used by ESX Server v1.x, which is no longer sold. It didn’t feature the cluster filesystem properties and was used only by a single server at a time. VMFS1 is a flat filesystem with no directory structure. — Officially named “VMware File System”
  • VMFS version 2 is used by ESX Server v2.x and (in a limited capacity) v3.x. VMFS2 is a flat filesystem with no directory structure. — Officially named “VMware File System”
  • VMFS version 3 is used by ESX Server v3.x and vSphere (4.x). As a most noticeable feature, it introduced directory structure in the filesystem. Older versions of ESX Server cannot read or write VMFS3 volumes. Beginning from ESX 3 and VMFS3, virtual machine configuration files are stored in the VMFS partition by default. — Officially named “VMware Virtual Machine File System”

In order to know the exact VMFS version number, see below:
Read more »

How to check VMware tools version using CLI on Linux

Posted on February 10th, 2009 in Operating Systems, Tips | 1 Comment »

Personally, I would said VMware Tools upgrade on Linux is not as easy as Microsoft Windows virtual machine. Every time VMware Tools upgrade must give me some problem especially on SuSE Linux virtual machine. Anyway this article is not discuss about VMware Tools upgrade and I’m focus on “How to check VMware tools version on Linux using CLI

Option 1:
# grep buildNr /usr/bin/vmware-config-tools.pl
my $buildNr;
$buildNr = '3.5.0 build-143128';
return remove_whitespaces($buildNr);

Read more »