Archive

Archive for the ‘VMWare’ Category

How to replace BusLogic with LSI Logic SCSI controller on Virtual Machine

July 10th, 2009 Zaur Bahramov 2 comments

We have upgraded our servers from Windows 2000 to Windows 2003 and decided to upgrade the virtual SCSI controller from BusLogic to LSI Logic since it guarantees the significant performance boost. So, this is the way I’ve replaced the BusLogic SCSI controller with LSI Logic.

So, here’s how my virtual machine did look like before an upgrade:

image image

Read more…

Categories: VMWare Tags:

VMWare Workstation: Set BIOS POST delay

March 18th, 2009 Zaur Bahramov No comments

In VMWare Workstation if you need to configure the BIOS POST delay you have to edit the .vmx file as follows:

bios.bootDelay = "5000"

– adds an additional 5 second boot delay
OR:

bios.forceSetupOnce = "TRUE"

– forces the VM to enter the BIOS on the next start (this parameter will be automatically reset to FALSE).

Categories: VMWare Tags:

Examples Using the VMware Virtual Disk Manager

March 18th, 2009 Zaur Bahramov No comments

From: VMWare KB

The following examples illustrate how to use the virtual disk manager. You run the virtual disk manager from a command prompt.

Creating a Virtual Disk
To create a new virtual disk, use a command like the following:

vmware-vdiskmanager -c -t 0 -s 40GB -a ide myDisk.vmdk

This creates a 40GB IDE virtual disk named myDisk.vmdk. The virtual disk is contained in a single .vmdk file. The disk space is not preallocated.

Converting a Virtual Disk

To convert a virtual disk from preallocated to growable, use a command like the following:

vmware-vdiskmanager -r sourceDisk.vmdk -t 0 targetDisk.vmdk

This converts the disk from its original preallocated type to a growable virtual disk consisting of a single virtual disk file. The virtual disk space is no longer preallocated, and the virtual disk manager reclaims some disk space in the virtual disk so it is only as large as the data contained within it.

Read more…

Categories: VMWare Tags: ,