Viewing 15 posts - 91 through 105 (of 195 total)
  • Author
    Posts
  • sinn3rsinn3r
    Participant
      Post 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 ;)

      rjuecatrjuecat
      Participant
        Post count: 14

        Nachdem 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

        sinn3rsinn3r
        Participant
          Post count: 368

          @rjuecat einfach einen IDE-Controller anlegen und dort die Platten einhängen. Ich habe es unter Hyper-V laufen (auch 2019).

          rjuecatrjuecat
          Participant
            Post 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.
            Danke

            linuxfreaklinuxfreak
            Participant
              Post count: 6

              Many 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
              fi

              NAME=$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 linuxfreaklinuxfreak.
              sinn3rsinn3r
              Participant
                Post count: 368