View this PageEdit this PageUploads to this PageVersions of this PageHomeRecent ChangesSearchHelp Guide

Virtualizar la Máquina Windows2000 que tiene el vxworks tornado

Se ha seguido este tutorial.

Básicamente:
1. Se ha instalado en la máquina real los drivers de VMWARE (ha habido que instalar un nuevo w2k en el vmware para coger los drivers):
  • buslogic
  • pci
  • vmscsi
2. Se ha copiado el disco físico con un dd
 dd if=/dev/sdd of=tornado2.raw bs=16384
3. Se ha llevado a la máquina "host" (Windows 8.1 con VMWare Player 6.0)
4. Se ha generado una nueva máquina virtualizada para w2k pero sin instlar nada, y se ha modificado el vmdk para que apunte al nuevo disco. Ha quedado así:
# Disk DescriptorFile
version=1
encoding="UTF-8"
CID=c15c9971
parentCID=ffffffff
isNativeSnapshot="no"
createType="monolithicFlat"

# Extent description
RW 40020624 FLAT "tornado2.raw" 0

# The Disk Data Base 
#DDB

ddb.adapterType = "ide"
ddb.geometry.cylinders = "1023"
ddb.geometry.heads = "255"
ddb.geometry.sectors = "63"
ddb.longContentID = "85527cc3b033353b2ede6a54c15c9971"
ddb.toolsVersion = "9408"
ddb.uuid = "60 00 C2 91 8e 73 27 62-43 58 3b f8 05 ae 2e a0"
ddb.virtualHWVersion = "7"

5. Se ha editado el vmx para lo del scsi y ha quedado así:
.encoding = "windows-1252"
config.version = "8"
virtualHW.version = "10"
scsi0.present = "TRUE"
memsize = "512"
scsi0:0.present = "TRUE"
scsi0:0.fileName = "W2k Tornado.vmdk"
ide1:0.present = "TRUE"
ide1:0.autodetect = "TRUE"
ide1:0.deviceType = "cdrom-raw"
ethernet0.present = "TRUE"
ethernet0.connectionType = "nat"
ethernet0.wakeOnPcktRcv = "FALSE"
ethernet0.addressType = "generated"
usb.present = "TRUE"
ehci.present = "TRUE"
ehci.pciSlotNumber = "35"
sound.present = "TRUE"
sound.fileName = "-1"
sound.autodetect = "TRUE"
mks.enable3d = "TRUE"
serial0.present = "TRUE"
serial0.startConnected = "FALSE"
serial0.fileType = "thinprint"
pciBridge0.present = "TRUE"
pciBridge4.present = "TRUE"
pciBridge4.virtualDev = "pcieRootPort"
pciBridge4.functions = "8"
pciBridge5.present = "TRUE"
pciBridge5.virtualDev = "pcieRootPort"
pciBridge5.functions = "8"
pciBridge6.present = "TRUE"
pciBridge6.virtualDev = "pcieRootPort"
pciBridge6.functions = "8"
pciBridge7.present = "TRUE"
pciBridge7.virtualDev = "pcieRootPort"
pciBridge7.functions = "8"
vmci0.present = "TRUE"
hpet0.present = "TRUE"
displayName = "W2k Tornado"
guestOS = "win2000pro"
nvram = "W2k Tornado.nvram"
virtualHW.productCompatibility = "hosted"
gui.exitOnCLIHLT = "FALSE"
powerType.powerOff = "soft"
powerType.powerOn = "soft"
powerType.suspend = "soft"
powerType.reset = "soft"
extendedConfigFile = "W2k Tornado.vmxf"
floppy0.present = "FALSE"
uuid.bios = "56 4d 64 30 94 a7 79 07-c0 36 d2 85 91 75 1a 27"
uuid.location = "56 4d 64 30 94 a7 79 07-c0 36 d2 85 91 75 1a 27"
replay.supported = "FALSE"
replay.filename = ""
scsi0:0.redo = ""
pciBridge0.pciSlotNumber = "17"
pciBridge4.pciSlotNumber = "21"
pciBridge5.pciSlotNumber = "22"
pciBridge6.pciSlotNumber = "23"
pciBridge7.pciSlotNumber = "24"
scsi0.pciSlotNumber = "16"
usb.pciSlotNumber = "32"
ethernet0.pciSlotNumber = "33"
sound.pciSlotNumber = "34"
vmci0.pciSlotNumber = "36"
ethernet0.generatedAddress = "00:0c:29:75:1a:27"
ethernet0.generatedAddressOffset = "0"
vmci0.id = "-1854596569"
vmotion.checkpointFBSize = "134217728"
cleanShutdown = "FALSE"
softPowerOff = "FALSE"
usb:1.speed = "2"
usb:1.present = "TRUE"
usb:1.deviceType = "hub"
usb:1.port = "1"
usb:1.parent = "-1"
ide1:0.redo = ""
usb:0.present = "TRUE"
usb:0.deviceType = "hid"
usb:0.port = "0"
usb:0.parent = "-1"
ide1:0.startConnected = "TRUE"
tools.syncTime = "FALSE"
unity.wasCapable = "TRUE"
tools.remindInstall = "FALSE"
toolsInstallManager.updateCounter = "1"

6. Y con esto ya ha funcionado.