WilliamLam.com

  • About
    • About
    • Privacy
  • VMware Cloud Foundation
  • VKS
  • Homelab
    • Hardware Options
    • Hardware Reviews
    • Lab Deployment Scripts
    • Nested Virtualization
    • Homelab Podcasts
  • VMware Nostalgia
  • Apple
You are here: Home / Automation / How to Format and Create VMFS5 Volume using the CLI in ESXi 5

How to Format and Create VMFS5 Volume using the CLI in ESXi 5

07.19.2011 by William Lam // 39 Comments

VMware always recommends formatting and creating a new VMFS volume using the vSphere Client as it automatically aligns your VMFS volume. However, if you do not have access to the vSphere Client or you wanted to format additional VMFS volumes via a kickstart, you can do so using the CLI and the partedUtil under /sbin.

~ # /sbin/partedUtil
Not enough arguments
Usage:
Get Partitions : get
Set Partitions : set ["partNum startSector endSector type attr"]*
Delete Partition : delete Resize Partition : resize
Get Partitions : getptbl
Set Partitions : setptbl

With ESXi 5, an MBR (Master Boot Record) partition table is no longer used and has been replaced with a GPT (GUID Partition Table) partition table. There is also only one block size of 1MB versus the 2,4 and 8 that was available in ESX(i) 4.x

We can view the partitions of a device by using the "getptbl" option and ensure we don't have an existing VMFS volume:

~ # /sbin/partedUtil "getptbl" "/vmfs/devices/disks/mpx.vmhba1:C0:T2:L0"
gpt
652 255 63 10485760

Next we will need to create a partition by using the "setptbl" option:

/sbin/partedUtil "setptbl" "/vmfs/devices/disks/mpx.vmhba1:C0:T2:L0" "gpt" "1 2048 10474379 AA31E02A400F11DB9590000C2911D1B8 0"

The "setptbl" accepts 3 arguments:

  • diskName
  • label
  • partitionNumber startSector endSector type/GUID attribute

The diskName in this example is the full path to the device which is /vmfs/devices/disks/mpx.vmhba1:C0:T2:L0

The label will be gpt

The last argument is actually a string comprised of 5 individual parameters:

  • partitionNumber - Pretty straight forward
  • startSector - This will always be 2048 for 1MB alignment for VMFS5
  • endSector - This will need to be calculated based on size of your device
  • type/GUID - This is the GUID key for a particular partition type, for VMFS it will always be AA31E02A400F11DB9590000C2911D1B8

To view all GUID types, you can use the "showGuids" option:

~ # /sbin/partedUtil showGuids
Partition Type       GUID
vmfs                 AA31E02A400F11DB9590000C2911D1B8
vmkDiagnostic        9D27538040AD11DBBF97000C2911D1B8
VMware Reserved      9198EFFC31C011DB8F78000C2911D1B8
Basic Data           EBD0A0A2B9E5443387C068B6B72699C7
Linux Swap           0657FD6DA4AB43C484E50933C84B4F4F
Linux Lvm            E6D6D379F50744C2A23C238F2A3DF928
Linux Raid           A19D880F05FC4D3BA006743F0F84911E
Efi System           C12A7328F81F11D2BA4B00A0C93EC93B
Microsoft Reserved   E3C9E3160B5C4DB8817DF92DF00215AE
Unused Entry         00000000000000000000000000000000

Once you have the 3 arguments specified, we can now create the partition:

~ # /sbin/partedUtil "setptbl" "/vmfs/devices/disks/mpx.vmhba1:C0:T2:L0" "gpt" "1 2048 10474379 AA31E02A400F11DB9590000C2911D1B8 0"
gpt
0 0 0 0
1 2048 10474379 AA31E02A400F11DB9590000C2911D1B8 0

UPDATE (01/15) - Here is a quick shell snippet that you can use to automatically calculate End Sector as well as creating the VMFS5 volume:

partedUtil mklabel ${DEVICE} msdos
END_SECTOR=$(eval expr $(partedUtil getptbl ${DEVICE} | tail -1 | awk '{print $1 " \\* " $2 " \\* " $3}') - 1)
/sbin/partedUtil "setptbl" "${DEVICE}" "gpt" "1 2048 ${END_SECTOR} AA31E02A400F11DB9590000C2911D1B8 0"
/sbin/vmkfstools -C vmfs5 -b 1m -S $(hostname -s)-local-datastore ${DEVICE}:1

Note: You can also use the above to create a VMFS-based datastore running on a USB device, however that is not officially supported by VMware and performance with USB-based device will vary depending on the hardware and the speed of the USB connection. 

We can verify by running the "getptbl" option on the device that we formatted:

~ # /sbin/partedUtil "getptbl" "/vmfs/devices/disks/mpx.vmhba1:C0:T2:L0"
gpt
652 255 63 10485760
1 2048 10474379 AA31E02A400F11DB9590000C2911D1B8 vmfs 0

Finally we will now create the VMFS volume using our favorite vmkfstools, the syntax is the same as previous release of ESX(i):

~ # /sbin/vmkfstools -C vmfs5 -b 1m -S himalaya-SSD-storage-3 /vmfs/devices/disks/mpx.vmhba1:C0:T2:L0:1
Checking if remote hosts are using this device as a valid file system. This may take a few seconds...
Creating vmfs5 file system on "mpx.vmhba1:C0:T2:L0:1" with blockSize 1048576 and volume label "himalaya-SSD-storage-3".
Successfully created new volume: 4dfdb7b0-8c0dcdb5-e574-0050568f0111

Now you can refresh the vSphere Client or run vim-cmd hostsvc/datastore/refresh to view the new datastore that was created.

More from my site

  • Creating a VMFS datastore greater than 2TB on a USB device in ESXi
  • Running ESXi 5.0 & 5.1 on 2012 Mac Mini 6,2
  • Nested Virtualization Resources
  • That's so cool! Running ESXi 5.0 & 5.1 on Apple Mac Mini
  • vSphere Security Hardening Report Script for vSphere 5

Categories // Automation, ESXi Tags // ESXi 5.0, gpt, partedUtil, usb, vmfs, vSphere 5.0

Comments

  1. *protectedDredd says

    07/20/2011 at 9:16 pm

    AFAIK the partition for a VMFS volume must end on a cylinder boundary, so selecting the last sector for the partition table needs to be done using the formula endSector = ( C * H * S - 1).

    In your example, C=652, H=255, S = 63, taking the product and subtracting one gives 10474379 as shown.

    Reply
  2. *protectedWilliam says

    07/21/2011 at 12:57 am

    @Dredd,

    Thanks for the information, the numbers are actually from a VMware installation and I was looking through the esxi_install.log to get these numbers, I was interested in how this was calculated as well.

    Reply
  3. *protectedmonsrud says

    07/28/2011 at 5:20 pm

    Either of you know any way to avoid the check "Checking if remote hosts are using this device as a valid file system. This may take a few seconds..." prior to creating the filesystem? I'd like to measure the time it takes to create filesystems backed by various types of storage. Thanks.

    Reply
  4. *protectedKiran Basavaraju says

    06/14/2012 at 8:12 am

    I am getting the following error while executing the command partedUtil "setptbl" /vmfs/devices/disks/mpx.vmhba1:C0:T0:L0 "gpt" "1 2048 10474379 AA31E02A400F11DB9590000C2911D1B8 0"

    Error: Read-only file system during write on /dev/disks/mpx.vmhba1:C0:T0:L0
    SetPtableGpt: Unable to commit to disk

    Reply
  5. *protectedAnonymous says

    02/06/2013 at 11:36 pm

    Did anyone find a solution to this? We are getting the same message Error: Read-only file system during write on /dev/disks/naa.600508b1001c282ee975ec5ff98a098c
    WriteNewPtable: Unable to commit to disk

    Reply
  6. *protectedAnonymous says

    03/02/2013 at 4:44 am

    Works like a charm. Good stuff!

    Reply
  7. *protectedAnonymous says

    05/24/2013 at 11:08 pm

    Thanks to Willian I've been using this method to kickstart numerous systems and it all worked fine. Today I came across a slightly different system (older) and it was refusing create VMFS partition table with "can not satisfy all constraints" error. Spent some time troubleshooting and one of VMware KBs pointed at partedUtil getUsableSectors. The end sector from getUsableSectors was less than what cyls*heads*sects - 1. And partedUtil was happy to make me a new partition. Just FYI

    Reply
  8. *protectedfishpen0 says

    08/07/2013 at 1:58 pm

    It would appear that this method will not work when attempting to create a datastore on the disk that ESXi is installed on and running from. partedUtil will consistently error out with "Read-only file system during write on /dev/disks/foo.bar". This is frustrating because you CAN edit the datastores on a disk that ESXi is running on from within vSphere itself.

    Clearly ESXi is capable of configuring the disk it is running on. I was wondering if there is an alternate set of commands to run that set the disk up for write before running partedUtil.

    Reply
    • *protectedWilliam Lam says

      08/07/2013 at 2:16 pm

      Have you tried to delete the partition first? Another option would be just to dd the device and then trying again.

      Reply
    • *protectedfishpen0 says

      08/08/2013 at 2:42 pm

      The partition doesn't exist yet because we use the --novmfsondisk option in kickstart. We recently tried removing that flag and then deleting the partition first, which it will do with no complaints, but then it refuses to remake that partition with the same error as above.

      Reply
    • *protectedCasper42 says

      09/03/2013 at 4:07 pm

      Did you adjust the start sector value?
      Should be obvious, but if you already have ESXi installed on that disk, there is around 1GB of data already on that disk and a 2MB offset alignment isn't going to work. I would probably let the GUI tools do the work and then go back and reverse engineer the start sector to determine the proper value.

      Reply
    • *protectedCasper42 says

      09/03/2013 at 4:13 pm

      This comment has been removed by the author.

      Reply
  9. *protectedCasper42 says

    09/03/2013 at 4:14 pm

    William , I would love it if you could expand on this topic with the concept of a rolling VMFS 5 upgrade in mine.

    Example, youhave 8 1TB DataStores on VMFS3 and using a 4MB Block Size.
    You want to upgrade to VMFS 5 now that all your hosts and vCenter and such are upgraded.
    The best Practice states you create a new DS thats VMFS5, then SvMotion the VMs off an existing DS over to that one and then delete and re-create the entire LUN and start over.

    I would like to see an example of instead of deleting the LUN (and pestering the storage admin), using the above tools you mentioned to document the proper values from the existing DS, and then wipe it and create a fresh DS using VMFS 5 optimized values.

    This way we pester the Storage admin once to add another LUN to the cluster, and then after that the VMware admin can do the rest of the rolling upgrade on their own.

    Reply
  10. *protectedNoVA says

    10/22/2013 at 5:39 pm

    I am having similar issues but my error out of the hostd.log shows the following:

    Error: Connection timed out during read on /dev/disks/mpx.vmhba1:C0:T1:L0
    WriteNewPtable: Unable to commit to disk

    Reply
    • *protectedNetshark says

      02/05/2014 at 3:37 pm

      This is not a vmware issue; its a RAID/volume/SAN disks problem/incorrect setup. Disks might be presented to multiple hosts causing a write error lock/ The paths may be incorrectly setup /volume may be read only, etc..

      Reply
  11. *protectedNetshark says

    02/04/2014 at 4:08 pm

    "With ESXi 5, an MBR (Master Boot Record) partition table is no longer used and has been replaced with a GPT (GUID Partition Table) partition table."
    No entirely true. GPTs are hardware dependable. They are only there, if the disk and the bios support them, regardless of the OS used (ESXi or otherwise).
    ESXi 5 in a old supported server with old HDs, will have a nice MBR in it. I know mine do.

    Reply
  12. *protectedJames says

    05/02/2014 at 2:45 am

    Thank you for the clear and concise writeup. I just used this to create a datastore on my home ESXi 5 box because I can't use the vSphere client since I'm on Linux and I can't seem to get it to work under Wine. This was very helpful!

    I'd echo the comment about the MBR. When I created the partition, I actually forgot to include the "gpt" parameter. Running getptbl on the new partition returned "msdos"

    Also, thanks to the commenter who posted the formula to find the ending sector!

    Reply
  13. *protectedDavid Lam says

    10/31/2014 at 1:02 pm

    William - There are tons of articles and discussions on the web regarding partition alignment for guests. Here is my $1,000,000.00 question - For a default ESXi 5.1 update 2 and ESXi 5.5 update 2 installation, there is no options to configure the partition during installation. After the installation is complete, reboot. At the ESXi service console, login, run partedUtil, the starting sector is 64 !! Every VM doc on the web says ESXi 5.0 and above creating VMFS5+ creates aligned partitions. Starting sector of 64 is misaligned. What am I doing wrong? Or all this is just in my head? Thanks

    Reply
  14. *protectedgregstreuber says

    11/28/2014 at 6:00 pm

    Great post. Thanks William.

    Reply
  15. *protectedMars says

    02/09/2015 at 7:16 pm

    Thanks for posting this, William!

    Reply
  16. *protectedVirgilio Fornazin says

    04/29/2015 at 8:31 pm

    There's a way to set a partition type of disk ?

    I've splitted my mini 2012 1tb disk in two, and got the following ptbl

    gpt
    121601 255 63 1953525168
    1 40 409639 C12A7328F81F11D2BA4B00A0C93EC93B systemPartition 128
    2 409640 952255591 48465300000011AAAA1100306543ECAC unknown 0
    3 952255592 953525127 426F6F74000011AAAA1100306543ECAC unknown 0
    4 953526272 1953523711 EBD0A0A2B9E5443387C068B6B72699C7 linuxNative 0

    how can I change the partition 4 to 0xfb to (UUID AA31E02A400F11DB9590000C2911D1B8) and format disk with vmkfstools ?

    Reply
  17. *protected"FCHI says

    09/13/2015 at 2:27 pm

    wonderfull guy you are men!!!!! you saved my life- after a new vSphere 6 installation -Smart array P420i on a HP DL380Gen8,
    no way to add a datastore using the vClient or web Vcenter server appliance....
    but running your script generates error:
    ATS on device /dev/disks/naa.600508b1001c8e2d6458b2b5f17bfff0:1: not supported

    Thanks A LOT!

    Reply
  18. *protectedVince says

    09/23/2015 at 8:43 pm

    Hey William, I tried your UPDATE (01/15) section and turned it into a shell script. I execute it and it bombs out.

    expr: syntax error
    Invalid number of tokens

    Invalid partition information: 1 2048 AA31E02A400F11DB9590000C2911D1B8 0

    Invalid Partition information

    create fs deviceName:':1', fsShortName:'vmfs5', fsName:'BSTNDBYESXI01-local-datastore'
    Device path name ":1" is not a valid absolute or relative path
    Failed to resolve device name path :1
    VmkfslibExtractObjectName failedUsage: vmkfstools -C [vmfs3|vmfs5] /vmfs/devices/disks/vml... or,
    vmkfstools -C [vmfs3|vmfs5] /vmfs/devices/disks/naa... or,
    vmkfstools -C [vmfs3|vmfs5] /vmfs/devices/disks/mpx.vmhbaA:T:L:P
    Error: No such file or directory

    Reply
    • William Lam says

      09/23/2015 at 11:01 pm

      Make sure you can manually execute it successfully before turning it into a script. Looks like you might not be passing in something correctly as its pointing to syntax error

      Reply
  19. *protectedqwe says

    10/14/2015 at 2:40 pm

    vmkfstools -C vmfs5 mpx.vmhba32\:C0\:T0\:L0\:1
    Error: vmkfstools failed: vmkernel is not loaded or call not implemented.

    then i type
    tail /var/log/vmkernel.log
    and get error
    LVM: 7611: LVMProbeDevice failed on (3569532448, mpx.vmhba32:C0:T0:L0:1): Device does not contain a logical volume
    2015-10-14T14:32:37.697Z cpu0:33343)usb-storage: detected SCSI revision number 6 on vmhba32

    Can u comment this?

    Reply
    • *protectedqwe says

      10/14/2015 at 2:51 pm

      LUN is present
      partedUtil getptbl /dev/disks/mpx.vmhba32\:C0\:T0\:L0
      gpt
      243197 255 63 3906963456
      1 128 3906963422 AA31E02A400F11DB9590000C2911D1B8 vmfs 0

      sorry but i cant find any info in google.

      Thanx u VERY much for Manual

      Reply
  20. *protectedAdam Bernstein says

    03/19/2016 at 11:44 am

    Below is a script to create a valid VMFS partition. Afterwards, run this command to format the partition:

    /sbin/vmkfstools --createfs vmfs5 --blocksize 1m -S NewDatastoreName ${device}:1

    #!/bin/sh
    debug=echo
    # Fill in "device=" with the disk to partition. Otherwise specify path on command line
    #
    device="/vmfs/devices/disks/t10.ATA_____TOSHIBA_MD04ACA400______________________________X4CDK6N2FSBA"

    if [ " $1" = " -h" ]; then
    echo "Usage $0 [-W] /vmfs/devices/disks/NNN"
    echo " -W: Write partition table; dry run without -W"
    exit 1
    elif [ " $1" = " -W" ]; then
    unset debug
    shift
    fi

    if [ -n "$1" ]; then
    device="$1"
    fi
    if [ -z "$device" ]; then
    echo "ERROR: Must specify valid raw device to partition"
    exit 1
    fi

    lastsector=`partedUtil getUsableSectors $device`
    if [ $? -ne 0 ]; then
    echo "ERROR: Invalid partition specified."
    exit 1
    fi
    lastsector=`echo $lastsector | awk '{print $2}'`

    if [ -n "$debug" ]; then
    echo "NOTICE: === This is a dry run ===="
    echo "NOTICE: === Use -W option to write partition table ===="
    fi

    $debug /sbin/partedUtil setptbl $device gpt "1 2048 $lastsector AA31E02A400F11DB9590000C2911D1B8 0"
    echo
    echo "Partition table information:"
    /sbin/partedUtil getptbl $device

    Reply
    • *protectedAdam Bernstein says

      03/19/2016 at 11:56 am

      Update: The blog "ate" the backquote characters in the above script. Below is the corrected post.

      Below is a script to create a valid VMFS partition. Afterwards, run this command to format the partition:

      /sbin/vmkfstools –createfs vmfs5 –blocksize 1m -S NewDatastoreName ${device}:1

      #!/bin/sh
      debug=echo
      # Fill in "device=" with the disk to partition. Otherwise specify path on command line
      #
      device="/vmfs/devices/disks/t10.ATA_____TOSHIBA_MD04ACA400______________________________X4CDK6N2FSBA"

      if [ " $1" = " -h" ]; then
      echo "Usage $0 [-W] /vmfs/devices/disks/NNN"
      echo " -W: Write partition table; dry run without -W"
      exit 1
      elif [ " $1" = " -W" ]; then
      unset debug
      shift
      fi

      if [ -n "$1" ]; then
      device="$1"
      fi
      if [ -z "$device" ]; then
      echo "ERROR: Must specify valid raw device to partition"
      exit 1
      fi

      lastsector=$(partedUtil getUsableSectors $device)
      if [ $? -ne 0 ]; then
      echo "ERROR: Invalid partition specified."
      exit 1
      fi
      lastsector=$(echo $lastsector | awk '{print $2}')

      if [ -n "$debug" ]; then
      echo "NOTICE: === This is a dry run ===="
      echo "NOTICE: === Use -W option to write partition table ===="
      fi

      $debug /sbin/partedUtil setptbl $device gpt "1 2048 $lastsector AA31E02A400F11DB9590000C2911D1B8 0"
      echo
      echo "Partition table information:"
      /sbin/partedUtil getptbl $device

      Reply
  21. *protectedSivakumar says

    09/05/2017 at 10:12 pm

    Can you please provide the command to format and mount a file system in vmware.

    Reply
  22. *protectedArmin says

    09/03/2018 at 1:28 am

    Don't know to go on:

    the Formatting won't do right !

    ~ # vmkfstools -C vmfs5 -S USB-Backup /vmfs/devices/disks/mpx.vmhba43\:C0\:T0\:L0:1
    create fs deviceName:'/vmfs/devices/disks/mpx.vmhba43:C0:T0:L0:1', fsShortName:'vmfs5', fsName:'USB-Backup'
    deviceFullPath:/dev/disks/mpx.vmhba43:C0:T0:L0:1 deviceFile:mpx.vmhba43:C0:T0:L0:1
    Checking if remote hosts are using this device as a valid file system. This may take a few seconds...
    Creating vmfs5 file system on "mpx.vmhba43:C0:T0:L0:1" with blockSize 1048576 and volume label "USB-Backup".
    Failed to create VMFS on device mpx.vmhba43:C0:T0:L0:1
    Usage: vmkfstools -C [vmfs3|vmfs5] /vmfs/devices/disks/vml... or,
    vmkfstools -C [vmfs3|vmfs5] /vmfs/devices/disks/naa... or,
    vmkfstools -C [vmfs3|vmfs5] /vmfs/devices/disks/mpx.vmhbaA:T:L:P
    Error: vmkfstools failed: vmkernel is not loaded or call not implemented.

    Reply
    • *protectedVladimir says

      10/01/2018 at 7:23 pm

      Armin, did you get it to work? I have it working on ESXi 6.5 running on a standard workstation but get the same error on an older Dell R310 running ESXi 5.5 U3.

      Reply
      • *protectedTom Otomanski says

        04/30/2020 at 5:23 am

        If you guys never found a solution I came across this post which helped me fix the issue:

        http://www.vbrain.info/2016/09/14/couldnt-format-vmfs-nested-esxi-vsan-datastore/

        Reply
  23. *protectedraj says

    05/08/2019 at 4:45 pm

    Hello William
    i am trying to use USB drive as VMFS local drive in esxi 6.7
    i followed all the command and i created partition but when i am running

    root@localhost:~] vmkfstools -c vmfs6 -S E2USB-ISO-Datastore /dev/disks/t10.SanDisk00Cruzer_Dial00000000004C530001250419112222:1
    i am getting
    Invalid file length specifier: vmfs6

    i dont know what i am missing

    these are other command i used first

    root@localhost:~] partedUtil setptbl dev/disks/t10.SanDisk00Cruzer_Dial00000000004C530001250419112222 gpt "1 2048 124053929 AA31E02A400F11DB9590000C2911D1B8 0" gpt
    0 0 0 0
    1 2048 124053929 AA31E02A400F11DB9590000C2911D1B8 0

    please advise

    Reply
    • *protectedTom Otomanski says

      04/30/2020 at 5:19 am

      @raj I think your issue is you're using -c instead of -C in your command. The lowercase c option is used for creating vmdk's for VM's.

      Reply

Trackbacks

  1. How to automate vFRC configurations using the command-line in ESXi | virtuallyGhetto says:
    02/28/2014 at 4:11 pm

    […] calculate the end sector if we wish to consume the entire device. To do so, we will need to use the partedUtil command and specify the "getptbl" option to identify some […]

    Reply
  2. ESX Swap File Size Best Practice | VM install says:
    04/26/2014 at 2:13 pm

    […] I also found a great post on VirtuallyGhetto where William breaks down how to manually create VMFS 5 partition in ESXi 5. His post has step by step instructions and great screen shots. Read more… […]

    Reply
  3. How to Mount a USB Drive as an ESXi Datastore | Micronauts says:
    10/05/2015 at 11:15 pm

    […] 3 – From another post of William Lam's called How to Format and Create VMFS5 Volume using the CLI in ESXi 5, and one from the Tech Repository VMware: Using the partedUtil commandline utility on ESX and ESXi, […]

    Reply
  4. Useful M.2 NVMe accessories for vSphere (VSAN/VMFS) Home Labs says:
    10/01/2018 at 9:22 am

    […] supported by VMware) is not a new concept, I have written about both of these topics here and here before. What is pretty cool about the M2X enclosure is that it supports both USB 3.0 as well as […]

    Reply
  5. Creating a VMFS datastore greater than 2TB on a USB device in ESXi says:
    02/04/2022 at 12:03 pm

    […] is a fairly common practice within the community, especially for VMware Homelabs which I have also demonstrated this capability as early as 2011 and most recently in 2015 for use with vSAN and in 2020 for a vSAN Witness with ESXi on Arm. While […]

    Reply

Leave a Reply to Adam BernsteinCancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Search

Thank Author

Author

William is Distinguished Platform Engineering Architect in the VMware Cloud Foundation (VCF) Division at Broadcom. His primary focus is helping customers and partners build, run and operate a modern Private Cloud using the VMware Cloud Foundation (VCF) platform.

Connect

  • Bluesky
  • Email
  • GitHub
  • LinkedIn
  • Mastodon
  • Reddit
  • RSS
  • Twitter
  • Vimeo

Recent

  • Automating the vSAN Data Migration Pre-check using vSAN API 06/04/2025
  • VCF 9.0 Hardware Considerations 05/30/2025
  • VMware Flings is now available in Free Downloads of Broadcom Support Portal (BSP) 05/19/2025
  • VMUG Connect 2025 - Minimal VMware Cloud Foundation (VCF) 5.x in a Box  05/15/2025
  • Programmatically accessing the Broadcom Compatibility Guide (BCG) 05/06/2025

Advertisment

Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use.
To find out more, including how to control cookies, see here: Cookie Policy

Copyright WilliamLam.com © 2025