Search results

  1. C

    How to mount an ISO as a filesystem in a container?

    Error message is mount: /mnt: mount failed: Operation not permitted
  2. C

    How to mount an ISO as a filesystem in a container?

    In a VM I can mount ISO images into the filesystem, but in a container I cannot execute "mount -o file.iso /mnt". How mount an iso as a filesystem into a container?
  3. C

    Improvement: Reduce migration downtime to seconds with two step transfer

    The suggestion was just the very simple change to always migrate in two steps no matter if there is a replication or not. The effect would be nearly the same, as if you would use the manual workaround: 1) Create a replication job by hand. 2) Start replicate it and wait until is it finished. 3)...
  4. C

    Improvement: Reduce migration downtime to seconds with two step transfer

    The near online migration of a running container could be drastically improved. Currently the actions are 1) Shutdown locally 2) Migrate volume 3) Startup remote The data replication could take some time (minutes or hours) in which the container is down. A very simple but drastic improvement...
  5. C

    How to restore config.db or list contents

    I case of desaster revovery: 1) How to replace the /var/lib/pve-cluster/config.db output backup with an existing one? I.e. which services to stop and restart? 2) How to list contents of VM configuration vom config.db?
  6. C

    CentOS based linux hangs in Booting from Hard Disk after setup

    I have a problem installing a CentOS based Nethserver VM (https://www.nethserver.org/) on proxmox. After settup the it hangs at "Booting from Hard Disk..." and consumes 100% of given CPUs. Version: pve-manager/6.2-6/ee1d7754 (running kernel: 5.4.41-1-pve). Dell T20, all VT-settings enabled. How...
  7. C

    [SOLVED] Ubuntu VM "problem completing the installation"

    I have the same problem installing a CentOS based Nethserver VM (https://www.nethserver.org/) on proxmox. After settup the it hangs at "Booting from Hard Disk..." and consumes 100% of given CPUs. Version: pve-manager/6.2-6/ee1d7754 (running kernel: 5.4.41-1-pve). Dell T20, all VT-settings...
  8. C

    How to reconfigure/resize rpool with proxmox setup DVD

    I hav e to resize the rpool an an existing installation which is on sda: So I did: zpool create rpoolnew /dev/sdb zfs snapshot -r rpool@copy zfs send -R rpool@copy | zfs recv rpoolnew -F Now I want to boot into the debug mode of the proxmox 6.2 DVD and rename rpoolnew to rpool and make it...
  9. C

    ZFS-Verschlüsselter swap-ZVOL mit Zufallskennwort

    Danke für den Hinweis. Warum ist tmp nicht standardmäßig ein tmpfs? Es wäre gut, wenn man das automatisch oder zumindest als option aktivieren könnte, denn im Nachhinein geht es nicht ohne physischen Zugriff auf den Rechner, da man eine Rescue-CD booten muss um /tmp zu löschen (oder etwa doch?)
  10. C

    ZFS-Verschlüsselter swap-ZVOL mit Zufallskennwort

    Wie legt der Installer den jetzt den Swapbereich an? Auf einer separaten Partition? Die könnte ja auch mit einem bei jedem Neustart neu erstellten Kennwort verschlüsselt werden. https://wiki.archlinux.org/index.php/Dm-crypt/Swap_encryption Wie gefährlich der ZVOL-SWAP-Problem wirklich ist, ist...
  11. C

    ZFS-Verschlüsselter swap-ZVOL mit Zufallskennwort

    Der Swapbereich ist derzeit unverschlüsselt. Es wäre aus Sicherheitsgründen sinnvol, das swap-ZVOL beim Start mit einem Zufallskennwort zu erstellen und zu verschlüsseln. Dann können auch bei Plattendiebstahl keine sensitiven Informationen insbesondere keine Kennwörter ausgelesen werden. Dies...
  12. C

    Bug: Adding a new mount point to container adds TWO ZFS volumes

    When I add a new mount point to an existing container Proxmox 6.1-5 it creates TWO ZFS volumes.
  13. C

    Timeout beim Löschen des entfernen Replikats bei Entfernung der Replikation

    Ich lösche geade einen großes zfs-Dateiensystem eines Containers, was anscheinend größtenteils im Hintergrund ausgeführt wird. Schon da gab es in der Proxmox-Console einen Timeout und man konnte den "zfs destroy" Befehl noch danach in der Prozessliste für einige Zeit sehen. Dann verschwand er...
  14. C

    Proxmox ZFS sieht ZFS-Pools von VMs als eigene Pools

    Was ist jetzt also konkret die Lösung? Namen in /etc/default/zfs ist schwierig, dann man dann keine VMs mehr anlegen kann, deren pool gleich einem Namen vom proxmox-host ist, oder? Wo setzt man volmode? Innerhalb der VM? Und welche Nachteile hat das?
  15. C

    Migration of VM with replication job not possible, why?

    There is always a workaround for things a software should do automatically. The change is trivial and would avoid having to manually reonfigure things.
  16. C

    Migration of VM with replication job not possible, why?

    I am not talking about live migration, where some feature in QEMU might be missing, but about a migration of VMs in the same way as with running LXC containers, i.e. by automatically stopping, replicate, restarting the vm. It works in LXC and would work with VMs also, but proxmox doesn't allow...
  17. C

    Migration of VM with replication job not possible, why?

    What about the other questions: 1) Why is it possible to warm-migrate LXC but not VMs? The process should be the same 2) What about the improvement "replicate-shutdown-replicate-startup" to minimize downtime? 3) What about the possibility to use migrate a paused or suspended VM/LXC?
  18. C

    Migration of VM with replication job not possible, why?

    Currently migration of a VM with replication job is not possible but with a LXC-container it is (although only cold migration). Why? Proxmox should do the same thing with VMs as with LXCs: shutdown at local server, replicate, startup at remote server. Improvement: To minimize the migration also...