5
7

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.

イメージファイルの変換、trim(qemu-img,VBoxManage)

Last updated at Posted at 2013-09-23
必ずzero埋めしておく
$ dd if=/dev/zero of=zero bs=4k; rm -f zero
qemu-imgのインストール
$ sudo yum install -y qemu-img

フォーマット変換

qcow2->qed
qemu-img convert -O qed centos.qcow2 ~/centos.qed
vdi->qcow2
qemu-img convert -O qcow2 windowsxp.vdi ~/windowsxp.qcow2
raw->vdi
VBoxManage convertdd sdb.raw sdb.vdi --format VDI
raw->vmdk
VBoxManage convertdd sdb.raw sdb.vmdk --format VMDK
vdi->raw
VBoxManage clonehd sdb.vdi sdb.raw --format RAW

trim

qcow2の未使用領域を取り除く
$ qemu-img convert -O qcow2 vm-301-disk-1.qcow2 vm-301-disk-1.qcow2.new
vdi
$ VBoxManage modifyhd sdb.vdi --compact

イメージ作成

# qemu-img create -f qcow2 vm-107-disk-1.qcow2 500G
# ls -lh
合計 140K
-rw-r--r-- 1 root root 200K 12月 14 07:18 vm-107-disk-1.qcow2

extensionのインストール

sudo VBoxManage extpack install \
  Oracle_VM_VirtualBox_Extension_Pack-5.0.24-108355.vbox-extpack

サイズを拡張

qemu-img resize disk1.qcow2 +7G
qemu-img check -r all disk1.qcow2
qemu-img info disk1.qcow2
5
7
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
5
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?