Good afternoon,
I am very new to proxmox and I seem to be having some issues with ZFS.
I have a few vm disks in zfs that I want to move around to new VMs or export. I can see the volumes with zfs list
I would like to export 100-disk-0 and 104-disk-3 and make them part of new VMs (an example).
I have tried commands like this, but you see the output and my clear lack of understanding on how zfs works.
Any help would be appreciated.
Thanks!
I am very new to proxmox and I seem to be having some issues with ZFS.
I have a few vm disks in zfs that I want to move around to new VMs or export. I can see the volumes with zfs list
Code:
NAME USED AVAIL REFER MOUNTPOINT
rpool 29.4G 84.9G 104K /rpool
rpool/ROOT 1.69G 84.9G 96K /rpool/ROOT
rpool/ROOT/pve-1 1.69G 84.9G 1.69G /
rpool/data 27.7G 84.9G 96K /rpool/data
rpool/data/vm-100-disk-0 14.4G 84.9G 14.4G -
rpool/data/vm-104-disk-0 144K 84.9G 144K -
rpool/data/vm-104-disk-2 68K 84.9G 68K -
rpool/data/vm-104-disk-3 13.2G 84.9G 13.2G -
I would like to export 100-disk-0 and 104-disk-3 and make them part of new VMs (an example).
I have tried commands like this, but you see the output and my clear lack of understanding on how zfs works.
Code:
root@hunsn:/etc/pve/qemu-server# qemu-img convert -O qcow2 -f raw rpool/data/vm-104-disk-3 /rpool/vm-104-disk-3.qcow2
qemu-img: Could not open 'rpool/data/vm-104-disk-3': Could not open 'rpool/data/vm-104-disk-3': No such file or directory
root@hunsn:/etc/pve/qemu-server# qemu-img convert -O qcow2 -f raw data/vm-104-disk-3 /rpool/vm-104-disk-3.qcow2
qemu-img: Could not open 'data/vm-104-disk-3': Could not open 'data/vm-104-disk-3': No such file or directory
root@hunsn:/etc/pve/qemu-server# qemu-img convert -O qcow2 -f raw vm-104-disk-3 /tmp/vm-104-disk-3.qcow2
qemu-img: Could not open 'vm-104-disk-3': Could not open 'vm-104-disk-3': No such file or directory
Any help would be appreciated.
Thanks!