Windows 10 (VirtualBox): Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „ Zurück zu Virtual Box“)
 
Zeile 1: Zeile 1:
== Verfügbare Systeme anzeigen ==


<pre>
VBoxManage list ostypes
</pre>


Für ''Windows 10'' lautet die Ausgabe folgendermassen:


<pre>
ID:          Windows10_64
Description: Windows 10 (64-bit)
Family ID:  Windows
Family Desc: Microsoft Windows
64 bit:      true
</pre>


== VM anlegen ==


<pre>
VBoxManage createvm --name Windows10 --ostype Windows10_64 --basefolder /home/martin/VirtualBoxHardDrives/ --register
</pre>
== Einstellungen ändern ==
<pre>
VBoxManage modifyvm "Windows10" --memory 4096 --acpi on --boot1 dvd --nic1 nat
</pre>
== Festplatte erzeugen ==
<pre>
VBoxManage createhd --filename "Windows10.vdi" --size 30000
</pre>
== IDE Controller hinzufügen ==
<pre>
VBoxManage storagectl "Windows10" --name "IDE Controller" --add ide --controller PIIX4
</pre>
== Erzeugte Festplatte als erste Festplatte festlegen ===
<pre>
VBoxManage storageattach "Windows10" --storagectl "IDE Controller" --port 0 --device 0 --type hdd --medium "Windows10.vdi"
</pre>
== ISO-Datei zum späteren Installieren hinzufügen ==
<pre>
VBoxManage storageattach "Windows10" --storagectl "IDE Controller" --port 0 --device 1 --type dvddrive --medium /home/martin/ISO_Files/Win10_1709_German_x64.iso
</pre>
== ''VirtualBox Remote Desktop Extension'' aktivieren ==
<pre>
VBoxManage modifyvm "Windows10" --vrde on
</pre>
== Virtuelle Maschine starten ==
Nach dem Starten sollt Windows per Remote-Desktop-Verbindung erreichbar sein:
<pre>
VBoxHeadless --startvm "Windows10"
</pre>
== Links ==
[https://www.virtualbox.org/manual/ch08.html#vboxmanage-createvm https://www.virtualbox.org/manual/ch08.html#vboxmanage-createvm]
[https://www.virtualbox.org/manual/ch07.html#vboxheadless https://www.virtualbox.org/manual/ch07.html#vboxheadless]




Zurück zu [[Virtual Box#Betriebssystem installieren|Virtual Box]]
Zurück zu [[Virtual Box#Betriebssystem installieren|Virtual Box]]

Version vom 26. März 2018, 20:40 Uhr

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"

Links

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

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


Zurück zu Virtual Box