-I found this info and the disk images at http://www.ffnn.nl/pages/articles/linux/vmware-player-image-creation.php\r
-\r
-Here's how to install a LiveCD ISO into a VMware Player-controlled disk image under Windows XP:\r
-\r
- 1. Download the VMware Player application: http://www.vmware.com/download/player/ and install.\r
- 1. Create a subdirectory, e.g. `C:\Documents and Settings\smith\Desktop\dfbsd\`.\r
- 1. Download the attached VMware-compatible sparse IDE disk image stored in `20GB-ide.zip` and extract it into that directory.\r
- 1. Create a VMware virtual machine configuration file with the extension `.vmx` in that directory, e.g. `dfbsd.vmx`:\r
- \r
- displayName = "DragonFlyBSD" \r
- config.version = "7" \r
- virtualHW.version = "3" \r
- scsi0.present = "TRUE" \r
- memsize = "192"\r
- MemAllowAutoScaleDown = "FALSE" \r
- ide0:0.present = "TRUE" \r
- ide0:0.deviceType = "ata-hardDisk" \r
- ide0:0.fileName = "20GB-ide.vmdk" \r
- ide1:0.present = "TRUE" \r
- ide1:0.fileName = "LATEST-Devel.iso" \r
- ide1:0.deviceType = "cdrom-image" \r
- floppy0.present = "FALSE" \r
- ethernet0.present = "TRUE" \r
- ethernet0.connectionType = "nat" \r
- usb.present = "TRUE" \r
- sound.present = "TRUE" \r
- sound.virtualDev = "es1371" \r
- sound.fileName = "-1"\r
- sound.autodetect = "TRUE" \r
- guestOS = "other" \r
- ide1:0.autodetect = "TRUE" \r
-\r
- 1.#5 Change the parameter `ide1:0.fileName` to match the name of the ISO image.\r
- 1. Double-click on the `.vmx` file and you're off! :-)\r
- 1. Type control-G to get mouse and keyboard focus into the VMware Player window, and proceed with a normal install.\r
- 1. Install to the whole disk, choose `lnc0` as the network device, install the boot block.\r
-\r
-You can tweak `memsize` to adjust the memory. By default, VMWare Player creates a VLAN and does DHCP, so running `dhclient` works. I haven't tried to install X11. I haven't tried the Linux version of VMware Player yet. I tried the SCSI disk images, but they didn't work immediately, so I gave up and used the IDE image.\r
-\r
-If you want to do anything fancier, you'll probably need VMware Workstation.\r
-----\r
-CategoryHowTo\r
+I found this info and the disk images at http://www.ffnn.nl/pages/articles/linux/vmware-player-image-creation.php
+
+Here's how to install a LiveCD ISO into a VMware Player-controlled disk image under Windows XP:
+
+1. Download the VMware Player application: http://www.vmware.com/download/player/ and install.
+1. Create a subdirectory, e.g. `C:\Documents and Settings\smith\Desktop\dfbsd\`.
+1. Download the attached VMware-compatible sparse IDE disk image stored in `20GB-ide.zip` and extract it into that directory.
+1. Create a VMware virtual machine configuration file with the extension `.vmx` in that directory, e.g. `dfbsd.vmx`: see below.
+1. Change the parameter `ide1:0.fileName` to match the name of the ISO image.
+1. Double-click on the `.vmx` file and you're off! :-)
+1. Type control-G to get mouse and keyboard focus into the VMware Player window, and proceed with a normal install.
+1. Install to the whole disk, choose `lnc0` as the network device, install the boot block.
+
+The vmx config:
+
+ displayName = "DragonFlyBSD"
+ config.version = "7"
+ virtualHW.version = "3"
+ scsi0.present = "TRUE"
+ memsize = "192"
+ MemAllowAutoScaleDown = "FALSE"
+ ide0:0.present = "TRUE"
+ ide0:0.deviceType = "ata-hardDisk"
+ ide0:0.fileName = "20GB-ide.vmdk"
+ ide1:0.present = "TRUE"
+ ide1:0.fileName = "LATEST-Devel.iso"
+ ide1:0.deviceType = "cdrom-image"
+ floppy0.present = "FALSE"
+ ethernet0.present = "TRUE"
+ ethernet0.connectionType = "nat"
+ usb.present = "TRUE"
+ sound.present = "TRUE"
+ sound.virtualDev = "es1371"
+ sound.fileName = "-1"
+ sound.autodetect = "TRUE"
+ guestOS = "other"
+ ide1:0.autodetect = "TRUE"
+
+
+You can tweak `memsize` to adjust the memory. By default, VMWare Player creates a VLAN and does DHCP, so running `dhclient` works. I haven't tried to install X11. I haven't tried the Linux version of VMware Player yet. I tried the SCSI disk images, but they didn't work immediately, so I gave up and used the IDE image.
+
+If you want to do anything fancier, you'll probably need VMware Workstation.
+