secubox-deb/templates/SecuBox-Live.vbox.template
CyberMind-FR b153527b96 docs: Add VirtualBox quick start guide and VM creation script
New files:
- wiki/Live-USB-VirtualBox.md: Complete guide from download to running VM
- scripts/create-secubox-vm.sh: Automated VM creation with port forwarding
- templates/SecuBox-Live.vbox.template: VirtualBox template file

Updates:
- README.md: Added VirtualBox quick start section, updated package count (93)
- wiki/_Sidebar.md: Added VirtualBox quick start link

Usage:
  ./scripts/create-secubox-vm.sh secubox-live.vdi
  ./scripts/create-secubox-vm.sh --download --headless

Access after boot:
  SSH:  ssh -p 2222 root@localhost
  Web:  https://localhost:9443
  Pass: secubox

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-04-04 10:31:21 +02:00

51 lines
1.7 KiB
XML

<?xml version="1.0"?>
<!--
SecuBox VirtualBox Template
CyberMind — https://cybermind.fr
Usage:
1. Replace {{VDI_PATH}} with actual path to your secubox-live.vdi
2. Replace {{VM_UUID}} with a new UUID (use: uuidgen)
3. Save as SecuBox-Live.vbox
4. Import: VBoxManage registervm SecuBox-Live.vbox
Or use the automated script:
./scripts/create-secubox-vm.sh secubox-live.vdi
-->
<VirtualBox xmlns="http://www.virtualbox.org/" version="1.19-linux">
<Machine uuid="{{{VM_UUID}}}" name="SecuBox-Live" OSType="Debian_64" snapshotFolder="Snapshots">
<MediaRegistry>
<HardDisks>
<HardDisk uuid="{{{DISK_UUID}}}" location="{{VDI_PATH}}" format="VDI" type="Normal"/>
</HardDisks>
</MediaRegistry>
<Hardware>
<CPU count="2"/>
<Memory RAMSize="4096"/>
<Firmware type="EFI"/>
<Display controller="VBoxSVGA" VRAMSize="128"/>
<BIOS>
<IOAPIC enabled="true"/>
</BIOS>
<Network>
<Adapter slot="0" enabled="true" MACAddress="080027SECUBOX" type="82540EM">
<NAT>
<Forwarding name="SSH" proto="1" hostport="2222" guestport="22"/>
<Forwarding name="HTTPS" proto="1" hostport="9443" guestport="443"/>
</NAT>
</Adapter>
</Network>
<AudioAdapter enabled="false"/>
<Clipboard mode="Bidirectional"/>
<DragAndDrop mode="Bidirectional"/>
</Hardware>
<StorageControllers>
<StorageController name="SATA" type="AHCI" PortCount="1" useHostIOCache="true" Bootable="true">
<AttachedDevice type="HardDisk" hotpluggable="false" port="0" device="0">
<Image uuid="{{{DISK_UUID}}}"/>
</AttachedDevice>
</StorageController>
</StorageControllers>
</Machine>
</VirtualBox>