Manpages

名 前

virt-format - デ ィ ス ク の 消 去 お よ び 空 の デ ィ ス ク の 作 成

書 式

virt-format [--options] -a disk.img [-a disk.img ...]

説 明

Virt-format takes an existing disk file (or it can be a host partition, LV etc), erases all data on it, and formats it as a blank disk. It can optionally create partition tables, empty filesystems, logical volumes and more.

To create a disk containing data, you may be better to use virt-make-fs(1). If you are creating a blank disk to use in guestfish(1), you should instead use the guestfish -N option. 通 常 の 使 用 方 法 は こ の よ う に な り ま す :

virt-format -a disk.qcow ま た は 、 こ の よ う に な り ま す :

virt-format -a /dev/VG/LV

disk.qcow or /dev/VG/LV must exist already. Any data on these disks will be erased by these commands. These commands will create a single empty partition covering the whole disk, with no filesystem inside it.

Additional parameters can be used to control the creation of partitions, filesystems, etc. The most commonly used options are:
--filesystem=[ext3|ntfs|vfat|...]

Create an empty filesystem ("ext3", "ntfs" etc) inside the partition.

--lvm[=/dev/VG/LV]

Create a Linux LVM2 logical volume on the disk. When used with --filesystem, the filesystem is created inside the LV.

For more information about these and other options, see "OPTIONS" below.

The format of the disk is normally auto-detected, but you can also force it by using the --format option (q.v.). In situations where you do not trust the existing content of the disk, then it is advisable to use this option to avoid possible exploits.

オ プ シ ョ ン

--help 簡 単 な ヘ ル プ を 表 示 し ま す 。
-a
file
--add
file フ ァ イ ル 、 デ ィ ス ク イ メ ー ジ 、 ホ ス ト の パ ー テ ィ シ ョ ン 、 論 理 ボ リ ュ ー ム 、 外 部 USB デ ィ ス ク な ど を 追 加 し ま す 。 デ ィ ス ク イ メ ー ジ の 形 式 は 自 動 検 知 さ れ ま す 。 こ れ を 上 書 き し て 強 制 的 に 特 定 の 形 式 を 使 用 す る 場 合 、 --format=.. オ プ シ ョ ン を 使 用 し ま す 。 デ ィ ス ク に あ る 既 存 の デ ー タ は す べ て 削 除 さ れ ま す 。
-a
URI
--add
URI リ モ ー ト デ ィ ス ク を 追 加 し ま す 。 "リ モ ー ト ス ト レ ー ジ の 追 加 " in guestfish(1) 参 照 。
--blocksize=512
--blocksize=4096
--blocksize

This parameter sets the sector size of the disk image. It affects all explicitly added subsequent disks after this parameter. Using --blocksize with no argument switches the disk sector size to the default value which is usually 512 bytes. See also "guestfs_add_drive_opts" in guestfs(3).

--filesystem=ext3|ntfs|vfat|...

Create an empty filesystem of the specified type. Many filesystem types are supported by libguestfs.

--filesystem=none フ ァ イ ル シ ス テ ム を 作 成 し ま せ ん 。 こ れ が デ フ ォ ル ト で す 。
--format=raw|qcow2|..
--format

-a オ プ シ ョ ン は 標 準 状 態 で デ ィ ス ク イ メ ー ジ の 形 式 を 自 動 検 知 し ま す 。 こ れ を 使 用 す る こ と に よ り 、 コ マ ン ド ラ イ ン で 後 続 の -a オ プ シ ョ ン の デ ィ ス ク 形 式 を 強 制 的 に 指 定 で き ま す 。 引 数 な し で --format を 使 用 す る こ と に よ り 、 後 続 の -a オ プ シ ョ ン に 対 し て 自 動 検 知 に 戻 せ ま す 。 例 :

virt-format --format=raw -a disk.img

forces raw format (no auto-detection) for disk.img.

virt-format --format=raw -a disk.img --format -a another.img

forces raw format (no auto-detection) for disk.img and reverts to auto-detection for another.img. 仮 想 マ シ ン の デ ィ ス ク イ メ ー ジ が 信 頼 で き な い raw 形 式 で あ る 場 合 、 デ ィ ス ク 形 式 を 指 定 す る た め に こ の オ プ シ ョ ン を 使 用 す べ き で す 。 こ れ に よ り 、 悪 意 の あ る 仮 想 マ シ ン に よ り 起 こ り 得 る セ キ ュ リ テ ィ 問 題 を 回 避 で き ま す (CVE-2010-3851)。

--label=LABEL

Set the filesystem label.

--lvm=/dev/VG/LV

Create a Linux LVM2 logical volume called /dev/VG/LV. You can change the name of the volume group and logical volume.

--lvm

Create a Linux LVM2 logical volume with the default name (/dev/VG/LV).

--lvm=none 論 理 ボ リ ュ ー ム を 作 成 し ま せ ん 。 こ れ が デ フ ォ ル ト で す 。
--partition
デ ィ ス ク 全 体 を カ バ ー す る MBR ま た は GPT パ ー テ ィ シ ョ ン を 作 成 し ま す 。 デ ィ ス ク 容 量 が < 2 TB な ら ば MBR が 選 択 さ れ ま す 。 容 量 が ≥ 2 TB な ら ば GPT が 選 択 さ れ ま す 。 こ れ が デ フ ォ ル ト で す 。
--partition=gpt

GPT パ ー テ ィ シ ョ ン を 作 成 し ま す 。

--partition=mbr

MBR パ ー テ ィ シ ョ ン を 作 成 し ま す 。

--partition=none パ ー テ ィ シ ョ ン テ ー ブ ル を 作 成 し ま せ ん 。 Windows は こ れ ら の デ ィ ス ク を 認 識 で き な い か も し れ な い こ と に 注 意 し て く だ さ い 。

-v

--verbose デ バ ッ グ 用 の 冗 長 な メ ッ セ ー ジ を 有 効 に し ま す 。

-V

--version バ ー ジ ョ ン 番 号 を 表 示 し て 、 終 了 し ま す 。
--wipe

Normally virt-format does not wipe data from the disk (because that takes a long time). Thus if there is data on the disk, it is only hidden and partially overwritten by virt-format, and it might be recovered by disk editing tools.

If you use this option, virt-format writes zeroes over the whole disk so that previous data is not recoverable.

-x

libguestfs API 呼 び 出 し の ト レ ー ス を 有 効 に し ま す 。

終 了 ス テ ー タ ス

こ の プ ロ グ ラ ム は 、 成 功 す る と 0、 失 敗 す る と 1 を 返 し ま す 。

関 連 項 目

guestfs(3), guestfish(1), virt-filesystems(1), virt-make-fs(1), virt-rescue(1), virt-resize(1), http://libguestfs.org/.

著 者

Richard W.M. Jones http://people.redhat.com/~rjones/

COPYRIGHT

Copyright (C) 2012 Red Hat Inc.

LICENSE

BUGS

To get a list of bugs against libguestfs, use this link: https://bugzilla.redhat.com/buglist.cgi?component=libguestfs&product=Virtualization+Tools

To report a new bug against libguestfs, use this link: https://bugzilla.redhat.com/enter_bug.cgi?component=libguestfs&product=Virtualization+Tools

When reporting a bug, please supply:

The version of libguestfs.

Where you got libguestfs (eg. which Linux distro, compiled from source, etc)

Describe the bug accurately and give a way to reproduce it.

Run libguestfs-test-tool(1) and paste the complete, unedited output into the bug report.