Search results

  1. F

    [SOLVED] snapshot create failed: TASK ERROR: VM 100 qmp command 'savevm-start' failed - State blocked by non-migratable device '0000:00:10.0/vfio-pci'

    yes, I have some passthrough network interface card. If I create a snapshot without ram, it can snapshot, is there any problem? Or I must use backup instead of snapshots?
  2. F

    [SOLVED] snapshot create failed: TASK ERROR: VM 100 qmp command 'savevm-start' failed - State blocked by non-migratable device '0000:00:10.0/vfio-pci'

    when I create a snapshot for my guest, failed. cmd: Snapshots --> take snapshot. my guest disk is /mnt/data/images/100/vm-100-disk-0.qcow2 use backup --> mode snapshot work fine. log: Formatting '/mnt/data/images/100/vm-100-state-test.raw', fmt=raw size=2671771648 VM 100 qmp command...
  3. F

    replication runner syslog

    Can I disable pvesr.timer if I not use replication? ``` systemctl stop pvesr.timer systemctl disable pvesr.timer ```
  4. F

    [SOLVED] Can I autoadd a nfs storage after vm start(not add it in hardware )?

    solved . disable guest "start at boot" autostart in /etc/rc.local ``` #!/bin/bash qm unlink 100 --idlist scsi1 qm start 100 i=0 while true do if [ -d "/mnt/pve/nfs/images" ]; then qm set 100 -scsi1 file="nfs:100/vm-100-disk-0.raw" break elif [ $i -eq 30 ]; then...
  5. F

    [SOLVED] Can I autoadd a nfs storage after vm start(not add it in hardware )?

    proxmox add remote nfs storage guest add hardisk from nfs storage. and then I can use it in the guest like a physical hardisk
  6. F

    [SOLVED] Can I autoadd a nfs storage after vm start(not add it in hardware )?

    My guest os can't mount a NFS-share, but it need a large hardisk to use. I add a nfs-hardisk from nfs storage(hardware->add->hardisk->storage from nfs). But if remote nfs storage is bloken, guest can't startup. So I want detach nfs-hardisk before guest start, after guest start, add...
  7. F

    [SOLVED] Can I autoadd a nfs storage after vm start(not add it in hardware )?

    I add a nfs storage in hardware now, but if nfs broken, vm start failed. so I want add nfs storage after vm start as a hotplug disk.