I am trying to import a .vmdk file (ESXi-derived) on a proxmox server which is 'all' zfs.
Basically, I want to keep the file in .vmdk format, and not turn it into a zvol (this is because it's much easier to "bring it back" to ESXi when needed)
Just to be sure, an empty VM
First try:
Second:
getting a zvol (on /rpool/data)
Not the best choice (for performance), but just a small mail server, convenience is definitely more important than speed
Perhaps there is some switch to be added, to retain the .vmdk file format?
Basically, I want to keep the file in .vmdk format, and not turn it into a zvol (this is because it's much easier to "bring it back" to ESXi when needed)
Just to be sure, an empty VM
Code:
qm create 503 --name ripristinato
First try:
Code:
root@pve:/rpool/data# qm importdisk 503 /rpool/data/pippo.vmdk local --format vmdk
storage local does not support vm images
Second:
Code:
qm importdisk 503 /rpool/data/pippo.vmdk local-zfs --format vmdk
Not the best choice (for performance), but just a small mail server, convenience is definitely more important than speed
Perhaps there is some switch to be added, to retain the .vmdk file format?