Windows 10 (VirtualBox)

Aus Tutorials
Zur Navigation springen Zur Suche springen

Grundinstallation

Verfügbare Systeme anzeigen

VBoxManage list ostypes

Für Windows 10 lautet die Ausgabe folgendermassen:

ID:          Windows10_64
Description: Windows 10 (64-bit)
Family ID:   Windows
Family Desc: Microsoft Windows
64 bit:      true 

VM anlegen

VBoxManage createvm --name Windows10 --ostype Windows10_64 --basefolder /home/martin/VirtualBoxHardDrives/ --register

Einstellungen ändern

VBoxManage modifyvm "Windows10" --memory 4096 --acpi on --boot1 dvd --nic1 nat

Festplatte erzeugen

VBoxManage createhd --filename "Windows10.vdi" --size 30000

IDE Controller hinzufügen

VBoxManage storagectl "Windows10" --name "IDE Controller" --add ide --controller PIIX4

Erzeugte Festplatte als erste Festplatte festlegen =

VBoxManage storageattach "Windows10" --storagectl "IDE Controller" --port 0 --device 0 --type hdd --medium "Windows10.vdi"

ISO-Datei zum späteren Installieren hinzufügen

VBoxManage storageattach "Windows10" --storagectl "IDE Controller" --port 0 --device 1 --type dvddrive --medium /home/martin/ISO_Files/Win10_1709_German_x64.iso

VirtualBox Remote Desktop Extension aktivieren

VBoxManage modifyvm "Windows10" --vrde on

Virtuelle Maschine starten

Nach dem Starten sollt Windows per Remote-Desktop-Verbindung erreichbar sein:

VBoxHeadless --startvm "Windows10"

Gasterweiterung

https://download.virtualbox.org/virtualbox/5.2.8/

Links

https://www.virtualbox.org/manual/ch08.html#vboxmanage-createvm

https://www.virtualbox.org/manual/ch07.html#vboxheadless


Zurück zu Virtual Box