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

How To Link Containers Using Docker Compose

This yields several advantages:1. Direct linking between containers is architectually efficient to direct traffic between…

Hyper-V: Search for Guest VMs Utilizing Certain Storage Paths

$pathSearch='C:\ClusterShare\RandomFolder' $pathSearch='C:\ProgramData' $allHyperVHosts={(Get-ClusterNode | Where { $_.State –eq "Up" }).Name | %{$_.ToLower()}}.Invoke() $allVms=foreach ($hyperVHost in…

VMware ESX Installation Procedures

1. Install ESX from ISO Putty Rufus MWware-VCSA-all-6.0.0-2562643.iso VMware-viclient.exe KVM console (ie. Lantronix) 2. Install…