Tagged: homeserver 4.12 vm hyper-v
-
AuthorPosts
-
sinn3rParticipant2021-05-09 at 09:55Post count: 368
@rjuecat: Wir nutzen mittlerweile ja das Original-Image vom Hersteller, da es sonst immer zu Problemen kam. Hier lässt sich sowas wie UEFI Boot nicht so einfach integrieren. Installiere doch einen Virtualisierungshost und lasse darunter das Image laufen ;)
rjuecatParticipant2021-05-12 at 14:36Post count: 14Nachdem das mit legacy boot nicht klappt, habe ich nun den Hyper-V Server 2019 installiert, finde da aber keine Möglichkeit die Platte als SATA zu betreiben (finde nur die SCSI Methode).
Hat das wer auf Hyper-V laufen? Wie ändere ich da die Datenträgerkonfiguration?
lg
sinn3rParticipant2021-05-12 at 15:37Post count: 368@rjuecat einfach einen IDE-Controller anlegen und dort die Platten einhängen. Ich habe es unter Hyper-V laufen (auch 2019).
rjuecatParticipant2021-05-20 at 21:31Post count: 14@sinn3r Das Problem lag an der Genaration der virtuellen Maschine. Im der neuen empfohlenen Generation 2 sind nur SCSI Controller möglich. Hab dann auf Generation 1 umgestellt, da hatte ich dann den IDE Controller der funktioniert.
DankelinuxfreakParticipant2021-06-06 at 10:16Post count: 6Many thanks @ @Sinn3r for the images. I decided to try it out on my laptop running Linux Mint 20 with qemu-kvm, if anyone else wants to try, below is my install script to quickly import the vmdk image and get it up and running.
Is there any possibility to import remanent Speicher from my original “HomeServer 2” (yes, very old/obsolete) in any way ? Or have to start all over?
Do I have to change MAC / serial or can I use the defaults as given in the first post?
My install script (place .vmdk in /var/lib/libvirt/images and if you have bridging enabled use –network bridge=br0, instead of –network default, )
—-
#!/bin/bash
if [ $# -ne 3 ] ; then
echo “Usage: $0 <vmdkimagename> <CPUs> <RAM_GB>”
exit 1
fiNAME=$1
VCPUS=$2
RAM_MB=$(($3*1024))virt-install \
–name $NAME \
–memory $RAM_MB \
–vcpus $VCPUS \
–cpu host \
–hvm \
–disk /var/lib/libvirt/images/$NAME.vmdk,bus=sata \
–network default,model=e1000,mac=00:0a:b3:02:29:55 \
–graphics spice,listen=0.0.0.0 \
–noautoconsole \
–os-type=linux \
–os-variant=generic \
–boot hd \
–noreboot \
–import \- This reply was modified 3 years, 3 months ago by linuxfreak.
sinn3rParticipant2021-06-06 at 11:03Post count: 368