Changes

Jump to: navigation, search

Prl-disk-tool for Virtuozzo 7

235 bytes added, 13:40, 21 December 2015
make trd more readable
can perform the following operations:
# ''<code>resize --size ...'' </code> : Resize image (in-place)# ''<code>resize --size ... --resize_partition'' </code> : Resize image and last partition to fit (copying)# ''<code>resize --info'' </code> : Display resize estimates (current size, minimum size, minimum size w/o resizing last partition) - '''VM only'''# ''<code>compact'' </code> : Compact image to occupy less space on host disk. (in-place)# ''<code>compact --info'' </code> : Display compact estimates (block count, allocated, used) - '''VM only'''# ''<code>merge'' </code> : Merge internal snapshots of image (in-place) - '''VM only'''# ''<code>merge --external'' </code> : Merge external snapshot of image (in-place) - '''VM only'''# ''<code>convert [--plain | --expanding]'' </code> : Convert image between plain and expanding modes (copying) - '''VM only'''
<code>prl_disk_tool </code> uses [http://libguestfs.org/ libguestfs], [http://wiki.qemu.org/download/qemu-doc.html#qemu_005fimg_005finvocation qemu-img] to work.
The user has to install additional packages to use part of functionality:
* ''<code>prl-disk-tool resize --info'' </code> (last partition: btrfs) → btrfs-progs >= 4.2 (already in repo)* ''<code>prl-disk-tool resize {--info,--resize_partition}'' </code> (last partition: ntfs) → libguestfs-winsupport (already in repo)* ''<code>prl-disk-tool compact {--info,}'' </code> (exists partition with ntfs) → libguestfs-winsupport
prl_disk_tool locks an image passed as argument by flock(). So only multiple
reads (''<code>{compact,resize} --info''</code>) OR a single write (others) are allowed.
FS-aware functions (''<code>resize {--resize_partition|--info}, compact [--info]''</code>) workfor ext2/ext3/ext4/ntfs/btrfs/xfs.
<code>prl_disk_tool </code> uses <code>qemu-img </code> to perform fs-unaware operations. It is morepowerful than qemu-img due to fs-aware operations performed with libguestfs.
The main purpose of <code>prl_disk_tool </code> is to automate some frequent operations.
=== 3. Products ===
* qemu-img >= 1.5.3-86
=== 4. Testing ===
Need to test the following cases:
* All functions work for qcow2 images.
* Functions not tagged as '''VM only''' work for ploop images.
* FS-aware functions (''<code>resize --resize_partition|--info, compact [--info]''</code>) work for ext2/ext3/ext4/ntfs/btrfs/xfs.
=== 5. Known issues ===
* ''<code>resize --resize_partition'' </code> should be implemented in-place (due tolimitations of qcow2, only for expanding)* all modifying operations have ''<code>--dry-run'' </code> option to not modify an image. The image is still opened for write, and exclusive lock is acquired.
* only listed filesystems are supported
* virt-resize, used by ''<code>resize --resize_partition''</code>, leaves an empty block of ~3M at the end of image.* ''<code>convert --plain'' </code> fallocate()s space inaccurately (due to unawareness of qcow2 internal structures).* ''<code>resize [expand]'' </code> after ''<code>convert --plain'' </code> does not force allocation of new (bigger) chunk of space (we do not keep image type (plain/expanding) for now - so it is impossible to determine whether we should allocate space outside of ''<code>convert'' </code> operation)

Navigation menu