diff options
Diffstat (limited to 'src/VBox/Main/xml/samples/VirtualBox-machine-linux.xml')
-rw-r--r-- | src/VBox/Main/xml/samples/VirtualBox-machine-linux.xml | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/src/VBox/Main/xml/samples/VirtualBox-machine-linux.xml b/src/VBox/Main/xml/samples/VirtualBox-machine-linux.xml new file mode 100644 index 00000000..8b67af38 --- /dev/null +++ b/src/VBox/Main/xml/samples/VirtualBox-machine-linux.xml @@ -0,0 +1,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> |