Posted On March 31, 2019

Some AWS Quick Notes

kimconnect 0 comments
blog.KimConnect.com >> Virtualization >> Some AWS Quick Notes
https://docs.aws.amazon.com/vm-import/latest/userguide/vmimport-image-import.html

Open Virtual Appliance (OVA) image format, which is compatible with VMware vSphere versions 4 and 5.
Virtual Hard Disk (VHD) image format, which is compatible with Citrix Xen and Microsoft Hyper-V virtualization products.
Stream-optimized ESX Virtual Machine Disk (VMDK) image format, which is compatible with VMware ESX and VMware vSphere versions 4 and 5 virtualization products.

VM Import/Export supports MBR-partitioned volumes that are formatted using the NTFS filesystem. GUID Partition Table (GPT) partitioned volumes are not supported.

For non-system drives, there are two main options to convert: using Windows or a 3rd-party partitioning

-----Windows-----
diskpart
select disk 1
clean
convert mbr

-----GPT fdisk-----
gdisk64 \\.\physicaldrive1
y
r
g
p
w
y
diskpart
DISKPART> list disk
DISKPART> select disk (id)
DISKPART> online disk (if the disk is not online)
DISKPART> attributes disk clear readonly
DISKPART> clean
DISKPART> convert mbr (or gpt)
DISKPART> create partition primary
DISKPART> select part 1
DISKPART> active (if this is the boot partition)
DISKPART> format fs=ntfs label=(name) quick
DISKPART> assign letter (letter)
DISKPART> list volume

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

AWS Autoscale with Public IP re-association

Option 1:--associate-public-ip-address command option with the as-create-launch-config commandOption 2:Allocate an Elastic IP then adding a…

PowerShell: Add New Virtual Disk to Existing Guest VM in Hyper-V

# Adding disks (optional) $newVMNames='TestWindows2019' $extraDiskSize='200GB' if($extraDiskSize){ foreach($newVmName in $newVMNames){ STOP-VM -vmname $newVmName $diskFile=(join-path $destinationFolder…

Virtual Machine Manager Error ID 23351 FirstBootDevice Invalid

When moving, importing, exporting Generation 2 template in VMM, the following error occurs when trying…