Tagged: 

Viewing 11 posts - 76 through 86 (of 86 total)
  • Author
    Posts
  • leo22986leo22986
    Participant
      Post count: 24

      kommt noch was???

      max999max999
      Participant
        Post count: 17

        Ja hätte auch grosses Interesse an 4.8 für ESX Server – da das Update nicht klappt!

        Markus1995Markus1995
        Participant
          Post count: 5

          Ja, Interesse besteht.

          rodi22rodi22
          Participant
            Post count: 6

            Habe die Version 4.7 auf 4.8 upgegraded. Nach anfgnlichen problemen in der VMware workstation mit der Netzwerk-Koomunikation, habe ich in der Vmware ein Hardware-upgrade der VM gemacht. Danach lief es. Wie in anderen Posts erwähnt: Consolen Umschaltung ALT+F1, ALT+F2, ALT+F3…

            upgrade war erfolgreich durch einspielen der hs_main aus der entpackten firmware 4.8 (geht aber beim reboot wieder verloren). Danach konnte ich über den Experten die Version 4.8 erfolgreich deployen. Konnte bisher keine Probleme mit der Version 4.8 feststellen.

            https://mega.nz/#F!2PpWyagJ!ujsy8nsS1DCZ_s9uw7iS-A

            Lief in einer VMware Workstation 15 unter Windows10

            SatjogiSatjogi
            Participant
              Post count: 10

              Hier der Fix für die Diagramme:

              
              einloggen per ssh
              cd /tmp
              dpkg --purge python-pil
              wget http://ftp.de.debian.org/debian/pool/main/p/pillow/python-pil_2.6.1-2+deb8u3_i386.deb
              
              wget http://ftp.de.debian.org/debian/pool/main/libw/libwebp/libwebp5_0.4.1-1.2+b2_i386.deb
              dpkg --install ./libwebp5_0.4.1-1.2+b2_i386.deb
              wget http://ftp.de.debian.org/debian/pool/main/libw/libwebp/libwebpdemux1_0.4.1-1.2+b2_i386.deb
              dpkg --install libwebpdemux1_0.4.1-1.2+b2_i386.deb
              wget http://ftp.de.debian.org/debian/pool/main/libw/libwebp/libwebpmux1_0.4.1-1.2+b2_i386.deb
              dpkg --install libwebpmux1_0.4.1-1.2+b2_i386.deb
              dpkg --install ./python-pil_2.6.1-2+deb8u3_i386.deb
              
              reboot
              
              coolboxcoolbox
              Participant
                Post count: 6

                Hello,

                Did anybody tried to start the vmdk in QEMU? I can start it but it won’t go beyond “starting up from harddisk”. It will pass grub.
                If it works, we might be able to run on a raspberry pi and thus run it on very cheap hardware.

                Who knows the correct syntax to get to the requierd partitions on the VMDK file?

                regards
                Herman

                cicocico
                Participant
                  Post count: 21

                  -> Habe die Version 4.7 auf 4.8 upgegraded. Nach anfgnlichen problemen in der VMware workstation mit der Netzwerk-Koomunikation, habe ich in der Vmware ein Hardware-upgrade der VM gemacht. Danach lief es. Wie in anderen Posts erwähnt: Consolen Umschaltung ALT+F1, ALT+F2, ALT+F3…

                  upgrade war erfolgreich durch einspielen der hs_main aus der entpackten firmware 4.8 (geht aber beim reboot wieder verloren). Danach konnte ich über den Experten die Version 4.8 erfolgreich deployen. Konnte bisher keine Probleme mit der Version 4.8 feststellen.

                  https://mega.nz/#F!2PpWyagJ!ujsy8nsS1DCZ_s9uw7iS-A

                  Lief in einer VMware Workstation 15 unter Windows10 <-

                  Hi , it’s possible to expand sda2 partition and how ?
                  Thank you

                  LedgeLedge
                  Participant
                    Post count: 3

                    Hallo zusammen,

                    kann vielleicht jemand mal ein image für Hyper-V in der Version HS4.7 oder HS4.8 bereitstellen?

                    Ich bin in Linux Themen einfach nicht gut genug um mir das nach Anleitung selber zu bauen.

                    Benötige das um ein wenig mit der neuen Logik zu experimentieren und möchte dafür nicht unbedingt am Live System rumspielen.

                    Währe echt super nett.

                    Gruß, Ledge

                    tvrtvr
                    Participant
                      Post count: 13

                      Hello Forum,

                      I’m not familiar to convert the HyperV or VMware – Formats to run on a QNAP-NAS.

                      Can somebody be so kind to convert the actual (or the hs-4.11.3) version of the gira-homeserver to run easily on a QNAP and put it somewhere for download?

                      Thanks a lot!

                      TVRAT

                      linuxfreaklinuxfreak
                      Participant
                        Post count: 6

                        Hi Herman

                        The short answer is : use sata as bus type

                        I import the image through this small script file I created (didn’t try on 4.8 yet but guess it should work the same) :

                        #!/bin/bash
                        #Check guest communication with virsh qemu-agent-command $NAME ‘{“execute”:”guest-info”}’
                        if [ $# -ne 3 ] ; then
                        echo “Usage: $0 <NAME> <CPUs> <RAM_GB> (minimum 2 CPU and 1GB)”
                        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 12 months ago by linuxfreaklinuxfreak.
                        dapi115dapi115
                        Participant
                          Post count: 4

                          Hallo,

                          hat irgendwer noch zufällig ein HyperV Image mit HS 4.2 liegen oder einen funktionierenden Downloadlink?
                          Ich finde leider nirgendwo was.

                          Danke

                        Viewing 11 posts - 76 through 86 (of 86 total)
                        • You must be logged in to reply to this topic.