Search results

  1. dietmar

    Restore VM without overwriting

    Simply restore using a new VMID (from the backup datastore panel).
  2. dietmar

    Add qm unlock command to start of backup

    Instead, you need to find out the real problem. Why does the VM crash? Any hint in the backup log or syslog?
  3. dietmar

    [SOLVED] tape backup write performance - shoe shining

    Also, do you run the latest version of PBS?
  4. dietmar

    [pve-firewall] Is it to be taken seriously? Off until after network has been up ...

    All Proxmox VE related services depend on pve-cluster, so there is no single pve service, VM or Container running unless that is up.
  5. dietmar

    Bad backup and restore performance

    SHA is always used, and is not related to encryption (encryption is done using AES).
  6. dietmar

    Bad backup and restore performance

    I don't think that will change anything...
  7. dietmar

    Bad backup and restore performance

    Its not only compression. See the output of "proxmox-backup-client benchmark". For example, SHA256 checksum computation speed is 13% compared to the reference system.
  8. dietmar

    Bad backup and restore performance

    The CPU (Intel Xeon E5-2650L V4) seems to be very slow.
  9. dietmar

    Kill destroy process that still hang

    Most likely you have an unstable storage system. What is the output of # pvesm status
  10. dietmar

    Better Protection against ransomware

    3-2-1 backup rule: You should have three total copies, use two different media (disk and tape, usually), and keep one copy offsite (tape). You will be always able to restore the offsite tape.
  11. dietmar

    /etc/pve - pmxcfs - amplification & inefficiencies

    Again, pmxcfs is not a general purpose file system, and we have bumped the limits where sensible in the past. I suggest that you use a real cluster file system if you run into limits, for example cephfs, ... Plus, we're always interested in improving things. As soon as I have an idea to do...
  12. dietmar

    /etc/pve - pmxcfs - amplification & inefficiencies

    pmxcfs is not a filesystem used to store arbitrary data. Instead, It is used to store PVE configuration into a transactional database. Each write is atomic and synced to the disk! So please use other filesystems if you want to store large files. pmxcfs is not meant for that, and was never...
  13. dietmar

    Does Proxmox Support "Live Migration" Of VMs?

    Sure, this is a basic feature for any hypervisor: https://pve.proxmox.com/pve-docs/pve-admin-guide.html#qm_migration
  14. dietmar

    FC and Snapshot Support

    Ceph is far superior to these legacy storage technologies. So in short, we do not plan to implement that.
  15. dietmar

    Czech translation for 2.x

    That is explained in the developer documentation: See: http://pve.proxmox.com/wiki/Developer_Documentation
  16. dietmar

    [ 8.2.4] It is possible to migrate the vm to a host in another HA group

    You need to change the ha group from group1 to group2.
  17. dietmar

    Query: API Endpoint for Updating PBS Fingerprint

    PUT /api2/json/storage/{storage} See: https://pve.proxmox.com/pve-docs/api-viewer/index.html#/storage/{storage}
  18. dietmar

    ZFS : trying to create a ZFS, but I can't see any unused disk

    Have you tried to wipe the disk, so that it is empty (no filesystem on it)?
  19. dietmar

    Only internal snapshots for QCOW2 disks?

    External qcow2 snaphots is when you create a second qcow2 file, which refers to the original as base file. New data is always written to the second file. The base file is read-only. AFAIK ovirt is using this model.