-
I would like to change a VMs Guest OS to: Linux ; Other 5.x or later Linux (64-bit). Any help / hints are appreciated. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
So, I was able to help myself... :). This lists out all the possibilities accepted on the currently connnected vCenter system. Kudos to https://serverfault.com/questions/597145/finding-guestid-in-offline-documentation I hope it helps others! |
Beta Was this translation helpful? Give feedback.
So, I was able to help myself... :).
After checking, via PowerCLI the several options to define the GuestOS parameters:
PS C:\Users\user> [System.Enum]::GetNames([VMware.Vim.VirtualMachineGuestOsIdentifier])
This lists out all the possibilities accepted on the currently connnected vCenter system.
I've used 'other5xLinux64Guest':
govc vm.change -vm /govc-lab-dc/vm/govc/testvm -g="other5xLinux64Guest"
Kudos to https://serverfault.com/questions/597145/finding-guestid-in-offline-documentation
I hope it helps others!