Check if KVM has the support of Ceph
As you may know Ceph is not part of Debian Wheezy, thus QEMU-KVM was not compiled with the Ceph support (--enable-rbd
with both librbd
and librados
).
This article is just a quick tip to detect if your QEMU-KVM has the support of Ceph.
First check QEMU-KVM:
$ sudo qemu-system-x86_64 -drive format=? |
And look for rbd
in the output!
Then QEMU-UTILS:
$ qemu-img -h |
And look for rbd
in the output!
That’s it!
Comments