summaryrefslogtreecommitdiffstats
path: root/src/VBox/Main/xml/samples/VirtualBox-machine-linux.xml
blob: 8b67af38127442d0bdac3a6eaf77fdaa86e43352 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<!-- Oracle VM VirtualBox Sample Machine Configuration (for a linux host) -->
<!--
 *  :tabSize=2:indentSize=2:noTabs=true:
 *  :folding=explicit:collapseFolds=1:
-->

<VirtualBox
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://www.innotek.de/VirtualBox-settings ../VirtualBox-settings-linux.xsd"
  xmlns="http://www.innotek.de/VirtualBox-settings"
  version="1.2-linux"
>

  <Machine
    name="dos" OSType="dos" uuid="{1a4d3cff-e693-4ae5-afaf-a1ccc6882183}"
    stateFile="aaa.sav"
  >

    <HardDiskAttachments>
      <HardDiskAttachment hardDisk="{508b474f-62ce-4872-9a42-3af09037a277}"
                          bus="ide0" device="master"/>
    </HardDiskAttachments>

    <Hardware>
      <Memory RAMSize="128"/>
      <Boot>
          <Order device="None" position="4"/>
          <Order device="None" position="2"/>
          <Order device="HardDisk" position="1"/>
          <Order device="Floppy" position="3"/>
      </Boot>
      <Display VRAMSize="4"/>
      <RemoteDisplay enabled="false"/>
      <BIOS>
        <ACPI enabled="false"/>
        <Logo displayTime="0" fadeIn="true" fadeOut="true"/>
      </BIOS>
      <DVDDrive>
          <Image uuid="{00000000-0000-0000-0100-000000000000}"/>
      </DVDDrive>
      <FloppyDrive>
          <HostDrive src="aaa"/>
      </FloppyDrive>
      <USBController enabled="false"/>
      <Network>
        <Adapter slot="0" enabled="true" cable="true" MACAddress="08002751DD5E">
          <NAT/>
        </Adapter>
        <Adapter slot="1" enabled="true" cable="false" MACAddress="08002751DD5E">
          <HostInterface/>
        </Adapter>
        <Adapter slot="2" enabled="true" cable="false" MACAddress="08002751DD5E"/>
        <Adapter slot="3" enabled="true" cable="false" MACAddress="08002751DD5E"/>
      </Network>
      <AudioAdapter driver="alsa" enabled="true"/>
      <SharedFolders>
          <SharedFolder name="aaa" hostPath="/bbb/ccc"/>
          <SharedFolder name="aaab" hostPath="/bbb/ccc"/>
      </SharedFolders>
    </Hardware>

  </Machine>

</VirtualBox>