2
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[kvm]qcow2からzfs(zvol)運用に切り替える

Last updated at Posted at 2017-11-12

qcow2で運用していたイメージをzfs上のzvolに移行したので、その時のメモ

環境

  • ubuntu server 16.04 lts
  • qemu-kvm
  • libvirt
  • zfs on linux

手順

マウント
modprobe nbd max_part=63
qemu-nbd -c /dev/nbd0 ファイル.qcow2
zvolの作成
zfs create -s -V 20G tank/hogehoge
qcow2のデータをzvolに複製
dd if=/dev/nbd0 of=/dev/zvol/tank/hogehoge ibs=512 obs=1024k

あとは作成したhogehogeをVirt-managerから起動ディスクとして指定すれば完了です
スクリーンショット 2017-11-12 12.09.38.png

感想

zfsで利用するメリットはまだはっきり分かりませんが、スナップショットはzfsの方が使いやすように思います。

参考

2
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?