fatvm – Share how to skinny "fat" VM's

Reduce your VM storage spend significantly

Posts Tagged ‘hyper-v

Top 12 referrers over the past 3 months

without comments

How to convert a VMWare VMDK to a Microsoft, Xen VHD?

with one comment

Written by paule1s

December 14, 2008 at 3:53 pm

A Brief Primer on Virtualization

without comments

I went through this process of discovery over the past three weeks and felt I should share my learning with you.

What is virtualization?

Virtualization is the technology that allows you to run several different OS’es, each of which is independently running on a dedicated (virtual) machine, concurrently on the same physical machine.

Wikipedia describes different types of virtualization

How is virtualization realized?

A hypervisor is the software layer that virtualizes the underlying host OS and hardware  to allow multiple operating systems to run concurrently on the same physical machine.  You can read about the hypervisor in depth here.

Which are the primary virtualization technologies in use commercially?

There are principally three arms vendors for virtual machines, VMWare, Microsoft and Xen. Their  technologies differ in subtle but important ways.

VMWare implements full virtualization. The VMWare hypervisor simulates the underlying x86 hardware completely so that Windows and Linux variants designed for the x86 architectcure can run unmodified within individual VMWare virtual machines

Microsoft and Xen implement paravirtualization. The hypervisor exposes a software interface to virtual machines that is similar but not identical to that of the underlying OS/hardware.  The calls supported by this interface are called hypercalls, analogous to the OS syscalls. Paravirtualization simplifies the design and implementation of the hypervisor and virtual machines that run on them can achieve performance closer to non-virtualized hardware. However, the downside is that operating systems must be explicitly ported to run on top of such a hypervisor.

Microsoft’s  Hyper-V hypervisor, introduced in Windows 2008,  supports Windows 2008, 2003, 2000 and SuSe Linux Enterprise Server 10  as guests,

How are these systems architected?

VMWare:

VMWare ESX

Solution Architecture

Micorosoft Hyper-V:

http://msdn.microsoft.com/en-us/library/cc768520.aspx

Xen:

How do the VM’s differ?

VMware uses the vmdk file format

The set of files necessary for VMWare VM

Microsoft and Xen use the vhd file format.

Written by paule1s

December 13, 2008 at 7:34 pm

Posted in survey

Tagged with , , , , ,

Virtual Machine Disk Image Compression

with 2 comments

Experience with running out of storage

Background about sparse files, Windows NTFS and VHD

VHD Pre-Compactor & Compactor

When you create a new VM you can pre-allocate all the storage in one shot or let the storage grow on demand. In the latter case, the VM uses a sparse file

VMDK Wipe & Shrink

3rd Party (Not from MSFT & VMW)

Rsync: for transferring files between machines

Research

Compressing Virtual Images

without comments

Experience with running out of storage

Background about sparse files, Windows NTFS and VHD

VHD Pre-Compactor & Compactor

When you create a new VM you can pre-allocate all the storage in one shot or let the storage grow on demand. In the latter case, the VM uses a sparse file

VMDK Wipe & Shrink

3rd Party (Not from MSFT & VMW)

Rsync: for transferring files between machines

Research