Ticket #2216: haiku.vmx

File haiku.vmx, 3.0 KB (added by scottmc, 16 years ago)

vmware vmx file, configured for 3 haiku volumes, plus CDROM

Line 
1#!/usr/bin/vmware
2## This .vmx file was created for use with the Demo, and can be modified in order
3## to change the virtual machine settings that VMWare presents to the guest OS it
4## is running. There are many good online resources to research the various
5## settings available to VMWare in this config file:
6
7config.version = "8"
8virtualHW.version = "4"
9
10MemAllowAutoScaleDown = "FALSE"
11MemTrimRate = "-1"
12
13uuid.location = "56 4d b7 eb d7 b7 94 95-bd 75 44 9f c3 05 52 90"
14uuid.bios = "56 4d b7 eb d7 b7 94 95-bd 75 44 9f c3 05 52 90"
15
16uuid.action = "create"
17checkpoint.vmState = "haiku.vmss"
18
19displayName = "Demo"
20guestOS = "other"
21
22## Change the allocated memory size to whatever you're comfortable with (in MB)
23## 128MB should be enough for testing the Demo at this point, will run with as
24## little as 64MB also if required.
25memsize = "512"
26
27ethernet0.present = "TRUE"
28## for ethernet0.virtualDev, e1000 tells VMWare to emulate
29## an ipro1000-compatible chipset, while vlance tells
30## VMWare to emulate a default AMD pcnet32 chispet.
31## vlance doesn't work so well, so we won't use it
32#ethernet0.virtualDev = "vlance"
33ethernet0.virtualDev = "e1000"
34ethernet0.addressType = "generated"
35ethernet0.connectionType = "bridged"
36
37usb.present = "FALSE"
38
39## soon there should be es1371 support, but for now we'll disable it
40sound.present = "TRUE"
41sound.virtualDev = "es1371"
42
43scsi0.present = "FALSE"
44
45floppy0.present = "FALSE"
46
47## boot image will be first disk
48ide0:0.present = "TRUE"
49ide0:0.fileName = "haiku.vmdk"
50ide0:0.deviceType = "disk"
51ide0:0.mode = "persistent"
52ide0:0.redo = ""
53ide0:0.writeThrough = "FALSE"
54ide0:0.startConnected = "FALSE"
55
56## apps partition will be second disk
57ide0:1.present = "TRUE"
58ide0:1.fileName = "apps.vmdk"
59ide0:1.deviceType = "disk"
60ide0:1.mode = "persistent"
61ide0:1.redo = ""
62ide0:1.writeThrough = "FALSE"
63ide0:1.startConnected = "FALSE"
64
65## You can set ide1:0.present = "TRUE" in order to enable the cdrom device. This is currently
66## set up to use Windows drive D: as a cdrom-raw device, but can also be configured to use
67## and ISO file, or a different drive if desired.
68
69ide1:0.present = "TRUE"
70ide1:0.fileName = "/dev/cdrom"
71ide1:0.deviceType = "cdrom-raw"
72ide1:0.autodetect = "FALSE"
73ide1:0.startConnected = "TRUE"
74
75## storage partition will be fourth disk
76ide1:1.present = "TRUE"
77ide1:1.fileName = "storage.vmdk"
78ide1:1.deviceType = "disk"
79ide1:1.mode = "persistent"
80ide1:1.redo = ""
81ide1:1.writeThrough = "FALSE"
82ide1:1.startConnected = "FALSE"
83
84tools.remindInstall = "TRUE"
85
86## you may set serial0.present = "TRUE" below if you wish to see the serial-debug
87## output from VMWare. This is helpful when testing the Demo as the serial-debug
88## is sometimes the only possible way to determine why it failed to boot.
89
90serial0.present = "TRUE"
91serial0.fileType = "file"
92serial0.fileName = "serial.txt"
93
94priority.grabbed = "normal"
95priority.ungrabbed = "normal"
96
97ethernet0.generatedAddress = "00:0c:29:05:52:90"
98ethernet0.generatedAddressOffset = "0"
99
100extendedConfigFile = "haiku.vmxf"
101virtualHW.productCompatibility = "hosted"
102tools.upgrade.policy = "manual"