1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
|
=head1 名前
virt-sysprep - 仮想マシンをクローンできるよう、再設定、設定解除またはカスタマイズします
=head1 書式
virt-sysprep [--options] -d domname
virt-sysprep [--options] -a disk.img [-a disk.img ...]
=head1 説明
Virt-sysprep can reset or unconfigure a virtual machine so that clones can be made from it. Steps in this process include removing SSH host keys, removing persistent network MAC configuration, and removing user accounts. Virt-sysprep can also customize a virtual machine, for instance by adding SSH keys, users or logos. Each step can be enabled or disabled as required.
Virt-sysprep modifies the guest or disk image I<in place>. The guest must be shut down. If you want to preserve the existing contents of the guest, I<you must snapshot, copy or clone the disk first>. See L</COPYING AND CLONING> below.
You do I<not> need to run virt-sysprep as root. In fact we'd generally recommend that you don't. The time you might want to run it as root is when you need root in order to access the disk image, but even in this case it would be better to change the permissions on the disk image to be writable as the non-root user running virt-sysprep.
"Sysprep" stands for "system preparation" tool. The name comes from the Microsoft program F<sysprep.exe> which is used to unconfigure Windows machines in preparation for cloning them. (Virt-sysprep does not work on Microsoft Windows guests.)
=head1 オプション
=over 4
=item B<--help>
簡単なヘルプを表示します。
=item B<-a> file
=item B<--add> file
仮想マシンからディスクイメージの I<file> を追加します。
ディスクイメージの形式は自動的に検出されます。強制的に特定の形式を使用するには I<--format> オプションを使用します。
=item B<-a> URI
=item B<--add> URI
Add a remote disk. The URI format is compatible with guestfish. See L<guestfish(1)/ADDING REMOTE STORAGE>.
=item B<--colors>
=item B<--colours>
Use ANSI colour sequences to colourize messages. This is the default when the output is a tty. If the output of the program is redirected to a file, ANSI colour sequences are disabled unless you use this option.
=item B<-c> URI
=item B<--connect> URI
libvirt を使用していると、指定された I<URI> に接続します。 省略すると、デフォルトの libvirt ハイパーバイザーに接続します。
ゲストのブロックデバイスを直接指定していると((I<-a>))、libvirt は何も使用されません。
=item B<-d> guest
=item B<--domain> guest
名前付きの libvirt 仮想マシンからすべてのディスクを追加します。 名前の代わりに仮想マシンの UUID を使用できます。
=item B<-n>
=item B<--dry-run>
Perform a read-only "dry run" on the guest. This runs the sysprep operation, but throws away any changes to the disk at the end.
=item B<--enable> operations
Choose which sysprep operations to perform. Give a comma-separated list of operations, for example:
--enable ssh-hostkeys,udev-persistent-net
would enable ONLY C<ssh-hostkeys> and C<udev-persistent-net> operations.
If the I<--enable> option is not given, then we default to trying most sysprep operations (see I<--list-operations> to show which are enabled).
Regardless of the I<--enable> option, sysprep operations are skipped for some guest types.
特定のバージョンの virt-sysprep によりサポートされる操作の一覧を表示するには I<--list-operations> を使用します。
See L</OPERATIONS> below for a list and an explanation of each operation.
=item B<--operation> operations
=item B<--operations> operations
Choose which sysprep operations to perform. Give a comma-separated list of operations, for example:
--operations ssh-hostkeys,udev-persistent-net
would enable ONLY C<ssh-hostkeys> and C<udev-persistent-net> operations.
I<--operations> allows you to enable and disable any operation, including the default ones (which would be tried when specifying neither I<--operations> nor I<--enable>) and all the available ones; prepending a C<-> in front of an operation name removes it from the list of enabled operations, while the meta-names C<defaults> and C<all> represent respectively the operations enabled by default and all the available ones. For example:
--operations firewall-rules,defaults,-tmp-files
would enable the C<firewall-rules> operation (regardless whether it is enabled by default), all the default ones, and disable the C<tmp-files> operation.
I<--operations> can be specified multiple times; the first time the set of enabled operations is empty, while any further I<--operations> affects the operations enabled so far.
If the I<--operations> option is not given, then we default to trying most sysprep operations (see I<--list-operations> to show which are enabled).
Regardless of the I<--operations> option, sysprep operations are skipped for some guest types.
特定のバージョンの virt-sysprep によりサポートされる操作の一覧を表示するには I<--list-operations> を使用します。
See L</OPERATIONS> below for a list and an explanation of each operation.
=item B<--echo-keys>
When prompting for keys and passphrases, virt-sysprep normally turns echoing off so you cannot see what you are typing. If you are not worried about Tempest attacks and there is no one else in the room you can specify this flag to see what you are typing.
=item B<--format> raw|qcow2|..
=item B<--format> auto
The default for the I<-a> option is to auto-detect the format of the disk image. Using this forces the disk format for I<-a> options which follow on the command line. Using I<--format auto> switches back to auto-detection for subsequent I<-a> options.
例:
virt-sysprep --format raw -a disk.img
forces raw format (no auto-detection) for F<disk.img>.
virt-sysprep --format raw -a disk.img --format auto -a another.img
forces raw format (no auto-detection) for F<disk.img> and reverts to auto-detection for F<another.img>.
仮想マシンのディスクイメージが信頼できない raw 形式である場合、 ディスク形式を指定するためにこのオプションを使用すべきです。 これにより、悪意のある仮想マシンにより起こり得る セキュリティ問題を回避できます (CVE-2010-3851)。
__INCLUDE:key-option.pod__
__INCLUDE:keys-from-stdin-option.pod__
=item B<--list-operations>
virt-sysprep プログラムによりサポートされる操作を一覧表示します。
These are listed one per line, with one or more single-space-separated fields, eg:
$ virt-sysprep --list-operations
bash-history * Remove the bash history in the guest
cron-spool * Remove user at-jobs and cron-jobs
dhcp-client-state * Remove DHCP client leases
dhcp-server-state * Remove DHCP server leases
[etc]
The first field is the operation name, which can be supplied to I<--enable>. The second field is a C<*> character if the operation is enabled by default or blank if not. Subsequent fields on the same line are the description of the operation.
Before libguestfs 1.17.33 only the first (operation name) field was shown and all operations were enabled by default.
=item B<--mount-options> mp:opts[;mp:opts;...]
Set the mount options used when libguestfs opens the disk image. Note this has no effect on the guest. It is used when opening certain guests such as ones using the UFS (BSD) filesystem.
Use a semicolon-separated list of C<mountpoint:options> pairs. You may need to quote this list to protect it from the shell.
例:
--mount-options "/:noatime"
これはルートディレクトリを C<notime> でマウントします。 この例:
--mount-options "/:noatime;/var:rw,nodiratime"
will do the same, plus mount F</var> with C<rw,nodiratime>.
=item B<-q>
=item B<--quiet>
Don’t print log messages.
To enable detailed logging of individual file operations, use I<-x>.
=item B<--network>
=item B<--no-network>
Enable or disable network access from the guest during the installation.
In virt-sysprep, the network is I<disabled> by default. You must use I<--network> to enable it, in order that options such as I<--install> or I<--update> will work.
L<virt-builder(1)> has more information about the security advantages of disabling the network.
=item B<-v>
=item B<--verbose>
デバッグ用の冗長なメッセージを有効にします。
=item B<-V>
=item B<--version>
バージョン番号を表示して、終了します。
=item B<--wrap>
Wrap error, warning, and informative messages. This is the default when the output is a tty. If the output of the program is redirected to a file, wrapping is disabled unless you use this option.
=item B<-x>
libguestfs API 呼び出しのトレースを有効にします。
__EXTRA_OPTIONS__
=back
=head1 OPERATIONS
If the I<--enable>/I<--operations> option is I<not> given, then most sysprep operations are enabled.
Use C<virt-sysprep --list-operations> to list all operations for your virt-sysprep binary. The ones which are enabled by default are marked with a C<*> character. Regardless of the I<--enable>/I<--operations> options, sysprep operations are skipped for some guest types.
Operations can be individually enabled using the I<--enable>/I<--operations> options. Use a comma-separated list, for example:
virt-sysprep --operations ssh-hostkeys,udev-persistent-net [etc..]
Future versions of virt-sysprep may add more operations. If you are using virt-sysprep and want predictable behaviour, specify only the operations that you want to have enabled.
C<*> = enabled by default when no I<--enable>/I<--operations> option is given.
__OPERATIONS__
=head1 コピー方法およびクローン方法
virt-sysprep は仮想マシンをクローンするプロセスの一部として使用できます。もしくは、クローンされた仮想マシンからテンプレートを準備するために使用できます。仮想化ツールを使用してこれを実現する他の方法がいろいろとあります。このセクションは単に概要を説明します。
仮想マシン(停止状態の場合)は 2 つの部分からなります:
=over 4
=item I<configuration>
仮想マシンの設定または説明。 例: libvirt XML (C<virsh dumpxml> 参照) 、仮想マシンの実行中の設定、または OVF のような他の外部形式。
いくつかの設定項目は変更する必要があるかもしれません:
=over 4
=item *
名前
=item *
UUID
=item *
ブロックデバイスへのパス
=item *
ネットワークカードの MAC アドレス
=back
=item I<ブロックデバイス>
One or more hard disk images, themselves containing files, directories, applications, kernels, configuration, etc.
Some things inside the block devices that might need to be changed:
=over 4
=item *
ホスト名および他のネットワーク設定
=item *
UUID
=item *
SSH ホストキー
=item *
Windows の一意なセキュリティ ID (SID)
=item *
Puppet の登録
=back
=back
=head2 ブロックデバイスのコピー法
Starting with an original guest, you probably wish to copy the guest block device and its configuration to make a template. Then once you are happy with the template, you will want to make many clones from it.
virt-sysprep
|
v
元のゲスト --------> テンプレート ---------->
\------> クローン
\-----> 済みゲスト
\---->
もちろん、ホストにおいて L<cp(1)> または L<dd(1)> を使用してブロックデバイスをコピーできます。
dd dd
元のゲスト --------> テンプレート ---------->
\------> クローン
\-----> 済みゲスト
\---->
よりスマート(かつ高速)な方法もあります:
snapshot
テンプレート ---------->
\------> クローン
\-----> 済みゲスト
\---->
You may want to run virt-sysprep twice, once to reset the guest (to make a template) and a second time to customize the guest for a specific user:
virt-sysprep virt-sysprep
(リセット) (ユーザー、キー、ロゴの追加)
| |
dd v dd v
元の仮想マシン ----> テンプレート ----> コピー済み ------> カスタム
テンプレート 仮想マシン
=over 4
=item *
Create a snapshot using qemu-img:
qemu-img create -f qcow2 -o backing_file=original snapshot.qcow
The advantage is that you don’t need to copy the original (very fast) and only changes are stored (less storage required).
Note that writing to the backing file once you have created guests on top of it is not possible: you will corrupt the guests.
=item *
C<lvcreate --snapshot> を使用してスナップショットを作成します。
=item *
Other ways to create snapshots include using filesystems-level tools (for filesystems such as btrfs).
Most Network Attached Storage (NAS) devices can also create cheap snapshots from files or LUNs.
=item *
Get your NAS to duplicate the LUN. Most NAS devices can also duplicate LUNs very cheaply (they copy them on-demand in the background).
=item *
L<virt-sparsify(1)> を使用してテンプレートを準備します。以下を参照してください。
=back
=head2 virt-clone
A separate tool, L<virt-clone(1)>, can be used to duplicate the block device and/or modify the external libvirt configuration of a guest. It will reset the name, UUID and MAC address of the guest in the libvirt XML.
L<virt-clone(1)> does not use libguestfs and cannot look inside the disk image. This was the original motivation to write virt-sysprep.
=head2 スパース化
virt-sparsify
元のゲスト --------> テンプレート
L<virt-sparsify(1)> can be used to make the cloning template smaller, making it easier to compress and/or faster to copy.
Notice that since virt-sparsify also copies the image, you can use it to make the initial copy (instead of C<dd>).
=head2 容量変更
virt-resize
テンプレート ---------->
\------> クローン
\-----> 済みゲスト
\---->
If you want to give people cloned guests, but let them pick the size of the guest themselves (eg. depending on how much they are prepared to pay for disk space), then instead of copying the template, you can run L<virt-resize(1)>. Virt-resize performs a copy and resize, and thus is ideal for cloning guests from a template.
=head1 FIRSTBOOT VS SCRIPT
The two options I<--firstboot> and I<--script> both supply shell scripts that are run against the guest. However these two options are significantly different.
I<--firstboot script> uploads the file C<script> into the guest and arranges that it will run, in the guest, when the guest is next booted. (The script will only run once, at the "first boot").
I<--script script> runs the shell C<script> I<on the host>, with its current directory inside the guest filesystem.
If you needed, for example, to C<yum install> new packages, then you I<must not> use I<--script> for this, since that would (a) run the C<yum> command on the host and (b) wouldn't have access to the same resources (repositories, keys, etc.) as the guest. Any command that needs to run on the guest I<must> be run via I<--firstboot>.
On the other hand if you need to make adjustments to the guest filesystem (eg. copying in files), then I<--script> is ideal since (a) it has access to the host filesystem and (b) you will get immediate feedback on errors.
Either or both options can be used multiple times on the command line.
=head1 セキュリティ
Virtual machines that employ full disk encryption I<internally to the guest> should not be considered for cloning and distribution, as it provides multiple parties with the same internal volume key, enabling any one such party to decrypt all the other clones. Refer to the L<LUKS FAQ|https://gitlab.com/cryptsetup/cryptsetup/-/blob/main/FAQ.md> for details.
Although virt-sysprep removes some sensitive information from the guest, it does not pretend to remove all of it. You should examine the L</OPERATIONS> above and the guest afterwards.
Sensitive files are simply removed. The data they contained may still exist on the disk, easily recovered with a hex editor or undelete tool. The I<--scrub> option can be used to scrub files instead of just deleting them. L<virt-sparsify(1)> is another way to remove this content. See also the L<scrub(1)> command to get rid of deleted content in directory entries and inodes.
=head2 乱数の種
I<(このセクションは Linux 仮想マシンのみに適用します)>
For supported guests, virt-sysprep writes a few bytes of randomness from the host into the guest’s random seed file.
If this is just done once and the guest is cloned from the same template, then each guest will start with the same entropy, and things like SSH host keys and TCP sequence numbers may be predictable.
Therefore you should arrange to add more randomness I<after> cloning from a template too, which can be done by enabling just the customize module:
cp template.img newguest.img
virt-sysprep --enable customize -a newguest.img
=head1 SELinux
For guests which make use of SELinux, special handling for them might be needed when using operations which create new files or alter existing ones.
For further details, see L<virt-builder(1)/SELINUX>.
=head1 WINDOWS 8
Windows 8 "fast startup" can prevent virt-sysprep from working. See L<guestfs(3)/WINDOWS HIBERNATION AND WINDOWS 8 FAST STARTUP>.
=head1 終了ステータス
このプログラムは、成功すると 0 を返します。または、エラーが起きると 1 を返します。
=head1 環境変数
=over 4
=item C<VIRT_TOOLS_DATA_DIR>
This can point to the directory containing data files used for Windows firstboot installation.
Normally you do not need to set this. If not set, a compiled-in default will be used (something like F</usr/share/virt-tools>).
This directory may contain the following files:
=over 4
=item F<rhsrvany.exe>
This is the RHSrvAny Windows binary, used to install a "firstboot" script in Windows guests. It is required if you intend to use the I<--firstboot> or I<--firstboot-command> options with Windows guests.
See also: C<https://github.com/rwmjones/rhsrvany>
=item F<pvvxsvc.exe>
This is a Windows binary shipped with SUSE VMDP, used to install a "firstboot" script in Windows guests. It is required if you intend to use the I<--firstboot> or I<--firstboot-command> options with Windows guests.
=back
=back
他の環境変数は L<guestfs(3)/環境変数> を参照してください。
=head1 関連項目
L<guestfs(3)>, L<guestfish(1)>, L<virt-builder(1)>, L<virt-clone(1)>, L<virt-customize(1)>, L<virt-rescue(1)>, L<virt-resize(1)>, L<virt-sparsify(1)>, L<virsh(1)>, L<lvcreate(8)>, L<qemu-img(1)>, L<scrub(1)>, L<http://libguestfs.org/>, L<http://libvirt.org/>.
=head1 著者
Richard W.M. Jones L<http://people.redhat.com/~rjones/>
Wanlong Gao, Fujitsu Ltd.
=head1 COPYRIGHT
Copyright (C) 2011-2023 Red Hat Inc.
Copyright (C) 2012 Fujitsu Ltd.
|