Recent content by jjm

  1. J

    ZFS VM replication

    Every guest can be replicated to multiple target nodes, but a guest cannot get replicated twice to the same target node.
  2. J

    [SOLVED] Unable to hotplug HDD to win2022

    1.add a scsi hdd. 2. install the scsi drivers . (virtio-win.xxxx.iso ,download from https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-virtio). 3. stop vm . 4. edit vm config files (/etc/pve/qemu_server/vid.conf) modify ide(or sata) to scsi ( ie : ide0 -- > scsi0 ...
  3. J

    [SOLVED] Unable to hotplug HDD to win2022

    hotplug not support ide and sata, try scsi
  4. J

    [SOLVED] Start VM everyday at 7:00am

    Hi to all, I m looking for a sulution for start VM(105) everyday at 7:00 if it is stopped. it's not worked in crontab. start.sh #! /bin/bash status=`qm status 105 | awk -F " " '{print $2}'` if [ $status = "stopped" ] ; then qm start 105 fi crontab -l 0 7 * * *...