Manpages

名 前

virt-rescue - 仮 想 マ シ ン に お い て レ ス キ ュ ー シ ェ ル を 実 行 し ま す

書 式

virt-rescue [--options] -d domname
virt-rescue [--options] -a disk.img [-a disk.img ...] [-i] 古 い 形 式 :

virt-rescue [--options] domname
virt-rescue [--options] disk.img [disk.img ...]

説 明

virt-rescue is like a Rescue CD, but for virtual machines, and without the need for a CD. virt-rescue gives you a rescue shell and some simple recovery tools which you can use to examine or rescue a virtual machine or disk image.

You can run virt-rescue on any virtual machine known to libvirt, or directly on disk image(s):

virt-rescue -d GuestName -i
virt-rescue --ro -a /path/to/disk.img -i
virt-rescue -a /dev/sdc

For live VMs you must use the --ro option.

When you run virt-rescue on a virtual machine or disk image, you are placed in an interactive bash shell where you can use many ordinary Linux commands. What you see in / (/bin, /lib etc) is the rescue appliance. You must mount the virtual machine’s filesystems. There is an empty directory called /sysroot where you can mount filesystems.

To automatically mount the virtual machine’s filesystems under /sysroot use the -i option. This uses libguestfs inspection to find the filesystems and mount them in the right place. You can also mount filesystems individually using the -m option.

Another way is to list the logical volumes (with lvs(8)) and partitions (with parted(8)) and mount them by hand: > <rescue> lvs
LV VG Attr LSize Origin Snap% Move Log Copy% Convert
lv_root vg_f15x32 -wi-a- 8.83G
lv_swap vg_f15x32 -wi-a- 992.00M >
<rescue> mount /dev/vg_f15x32/lv_root /sysroot >
<rescue> mount /dev/vda1 /sysroot/boot >
<rescue> ls /sysroot 利 用 可 能 な フ ァ イ ル シ ス テ ム を 一 覧 表 示 す る た め の も う 1 つ の コ マ ン ド は virt-filesystems(1) で す 。

Linux 仮 想 マ シ ン に お い て コ マ ン ド ( た と え ば 、 grub) を 実 行 す る に は 、 ま ず /sysroot デ ィ レ ク ト リ ー の 中 に chroot す る 必 要 が あ り ま す : > <rescue> chroot /sysroot 注 記
Virt-rescue can be used on any disk image file or device, not just a virtual machine. For example you can use it on a blank file if you want to partition that file (although we would recommend using guestfish(1) instead as it is more suitable for this purpose). You can even use virt-rescue on things like USB drives, SD cards and hard disks.

You can get virt-rescue to give you scratch disk(s) to play with. This is useful for testing out Linux utilities (see --scratch).

Virt-rescue does not require root. You only need to run it as root if you need root to open the disk image.

This tool is just designed for quick interactive hacking on a virtual machine. For more structured access to a virtual machine disk image, you should use guestfs(3). To get a structured shell that you can use to make scripted changes to guests, use guestfish(1).

オ プ シ ョ ン

--help 簡 単 な ヘ ル プ を 表 示 し ま す 。
-a
FILE
--add
FILE

Add "FILE" which should be a disk image from a virtual machine. If the virtual machine has multiple block devices, you must supply all of them with separate -a options. デ ィ ス ク イ メ ー ジ の 形 式 は 自 動 検 知 さ れ ま す 。 こ れ を 上 書 き し て 強 制 的 に 特 定 の 形 式 を 使 用 す る 場 合 、 --format=.. オ プ シ ョ ン を 使 用 し ま す 。

-a URI
--add
URI リ モ ー ト デ ィ ス ク を 追 加 し ま す 。 "リ モ ー ト ス ト レ ー ジ の 追 加 " in guestfish(1) 参 照 。
--append
KERNELOPTS レ ス キ ュ ー カ ー ネ ル に 追 加 オ プ シ ョ ン を 渡 し ま す 。
--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).

-c URI
--connect
URI

libvirt を 使 用 し て い る と 、 指 定 さ れ た URI に 接 続 し ま す 。 省 略 す る と 、 デ フ ォ ル ト の libvirt ハ イ パ ー バ イ ザ ー に 接 続 し ま す 。 ゲ ス ト の ブ ロ ッ ク デ バ イ ス を 直 接 指 定 し て い る と ( (-a)) 、 libvirt は 何 も 使 用 さ れ ま せ ん 。

-d guest
--domain
guest 名 前 付 き の libvirt 仮 想 マ シ ン か ら す べ て の デ ィ ス ク を 追 加 し ま す 。 名 前 の 代 わ り に 仮 想 マ シ ン の UUID を 使 用 で き ま す 。
-e none

Disable the escape key.

-e KEY

Set the escape key to the given key sequence. The default is "^]". To specify the escape key you can use:
"^x"

Control key + "x" key.

"none"

-e none means there is no escape key, escapes are disabled.

See "ESCAPE KEY" below for further information.

--format=raw|qcow2|..
--format

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

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

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

virt-rescue --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)。

-i

--inspector

virt-inspector(1) コ ー ド を 使 用 す る と 、 オ ペ レ ー テ ィ ン グ シ ス テ ム を 判 定 す る た め に デ ィ ス ク を 検 査 し ま す 。 ま た 、 実 際 の 仮 想 マ シ ン に マ ウ ン ト す る こ と と 同 じ よ う に フ ァ イ ル シ ス テ ム を マ ウ ン ト し ま す 。

The filesystems are mounted on /sysroot in the rescue environment.

--memsize MB

Change the amount of memory allocated to the rescue system. The default is set by libguestfs and is small but adequate for running system tools. The occasional program might need more memory. The parameter is specified in megabytes.

-m dev[:mountpoint[:options[:fstype]]]
--mount
dev[:mountpoint[:options[:fstype]]]

Mount the named partition or logical volume on the given mountpoint in the guest (this has nothing to do with mountpoints in the host).

If the mountpoint is omitted, it defaults to /. You have to mount something on /.

The filesystems are mounted under /sysroot in the rescue environment. マ ウ ン ト パ ラ メ ー タ ー の 三 番 目 の (ほ と ん ど 使 用 さ れ な い ) 項 目 は 、 バ ッ ク エ ン ド の フ ァ イ ル シ ス テ ム を マ ウ ン ト す る た め に 使 用 さ れ る マ ウ ン ト オ プ シ ョ ン の 一 覧 で す 。 こ れ が 指 定 さ れ て い な い 場 合 、 マ ウ ン ト オ プ シ ョ ン は 空 文 字 列 ま た は "ro" (--ro フ ラ グ が 使 用 さ れ て い る 場 合 ) に な り ま す 。

-m /dev/sda1:/:acl,user_xattr パ ラ メ ー タ ー の 四 番 目 の 項 目 は 使 用 す る フ ァ イ ル シ ス テ ム ド ラ イ バ ー ("ext3" や "ntfs" な ど ) で す 。 こ れ は ほ と ん ど 必 要 あ り ま せ ん 。 し か し 、 複 数 の ド ラ イ バ ー が フ ァ イ ル シ ス テ ム に 対 し て 有 効 で あ る 場 合 (例 : "ext2" と "ext3")、 ま た は libguestfs が フ ァ イ ル シ ス テ ム を 誤 検 知 し て い る 場 合 、 こ れ は 有 用 で す 。

--network 仮 想 マ シ ン に お い て QEMU の ユ ー ザ ー モ ー ド の ネ ッ ト ワ ー ク を 有 効 に し ま す 。 "NETWORK" 参 照 。

-r

--ro イ メ ー ジ を 読 み 込 み 専 用 で 開 き ま す 。 デ ィ ス ク イ メ ー ジ ま た は 仮 想 マ シ ン が 使 用 中 の 場 合 、 必 ず こ の オ プ シ ョ ン を 使 用 す る 必 要 が あ り ま す 。 ま た 、 デ ィ ス ク へ の 書 き 込 み ア ク セ ス が 不 要 な 場 合 、 こ の オ プ シ ョ ン が 一 般 的 に 推 奨 さ れ ま す 。

"OPENING DISKS FOR READ AND WRITE" in guestfish(1) 参 照 。

--scratch
--scratch=N

--scratch オ プ シ ョ ン に よ り 、 大 き な ス ク ラ ッ チ デ ィ ス ク を レ ス キ ュ ー ・ ア プ ラ イ ア ン ス に 追 加 で き ま す 。 --scratch=N に よ り 、 "N" 個 の ス ク ラ ッ チ デ ィ ス ク を 追 加 で き ま す 。 virt-rescue が 終 了 す る と き 、 ス ク ラ ッ チ デ ィ ス ク は 自 動 的 に 削 除 さ れ ま す 。

-a, -d お よ び --scratch オ プ シ ョ ン は 混 在 で き ま す 。 ス ク ラ ッ チ デ ィ ス ク は 、 こ れ ら が コ マ ン ド ラ イ ン に 現 れ る 順 番 で 、 ア プ ラ イ ア ン ス に 追 加 さ れ ま す 。

--selinux

This option is provided for backwards compatibility and does nothing.

--smp N レ ス キ ュ ー ア プ ラ イ ア ン ス に お い て N ≥ 2 仮 想 CPU を 有 効 に し ま す 。
--suggest

This option was used in older versions of virt-rescue to suggest what commands you could use to mount filesystems under /sysroot. For the current version of virt-rescue, it is easier to use the -i option instead. こ の オ プ シ ョ ン は --ro を 意 味 し ま す 。 仮 想 マ シ ン が 起 動 し て い た り 、 他 の virt-rescue を 実 行 し て い る と き で も 安 全 で す 。

-v

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

-V

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

-w

--rw デ ィ ス ク が 追 加 さ れ 、 読 み 書 き 可 能 で マ ウ ン ト さ れ る よ う 、 -a, -d, -m オ プ シ ョ ン を 変 更 し ま す 。

"OPENING DISKS FOR READ AND WRITE" in guestfish(1) 参 照 。

-x

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

旧 形 式 の コ マ ン ド ラ イ ン 引 数

Previous versions of virt-rescue allowed you to write either:

virt-rescue disk.img [disk.img ...] ま た は

virt-rescue guestname

whereas in this version you should use -a or -d respectively to avoid the confusing case where a disk image might have the same name as a guest. 互 換 性 の た め 古 い 形 式 が ま だ サ ポ ー ト さ れ て い ま す 。

ネ ッ ト ワ ー ク

Adding the --network option enables QEMU user networking in the rescue appliance. There are some differences between user networking and ordinary networking:
ping does not work

Because the ICMP ECHO_REQUEST protocol generally requires root in order to send the ping packets, and because virt-rescue must be able to run as non-root, QEMU user networking is not able to emulate the ping(8) command. The ping command will appear to resolve addresses but will not be able to send or receive any packets. This does not mean that the network is not working.

cannot receive connections

QEMU user networking cannot receive incoming connections.

TCP 接 続 の 作 成 法

The virt-rescue appliance needs to be small and so does not include many network tools. In particular there is no telnet(1) command. You can make TCP connections from the shell using the magical /dev/tcp/<hostname>/<port> syntax:

exec 3<>/dev/tcp/redhat.com/80
echo "GET /" >&3
cat <&3 詳 細 は bash(1) 参 照 。

ESCAPE KEY

Virt-rescue supports various keyboard escape sequences which are entered by pressing "^]" (Control key + "]" key).

You can change the escape key using the -e option on the command line (see above), and you can disable escapes completely using -e none. The rest of this section assumes the default escape key.

The following escapes can be used:
"^] ?"
"^] h"

Prints a brief help text about escape sequences.

"^] i"

Prints brief libguestfs inspection information for the guest. This only works if you used -i on the virt-rescue command line.

"^] q"
"^] x"

Quits virt-rescue immediately.

"^] s"

Synchronize the filesystems (sync).

"^] u"

Unmounts all the filesystems, except for the root (appliance) filesystems.

"^] z"

Suspend virt-rescue (like pressing "^Z" except that it affects virt-rescue rather than the program inside the rescue shell).

"^] ^]"

Sends the literal character "^]" (ASCII 0x1d) through to the rescue shell.

CAPTURING CORE DUMPS

If you are testing a tool inside virt-rescue and the tool (not virt-rescue) segfaults, it can be tricky to capture the core dump outside virt-rescue for later analysis. This section describes one way to do this.

1.

Create a scratch disk for core dumps:

truncate -s 4G /tmp/corefiles
virt-format --partition=mbr --filesystem=ext2 -a /tmp/corefiles
virt-filesystems -a /tmp/corefiles --all --long -h

2.

When starting virt-rescue, attach the core files disk last:

virt-rescue --rw [-a ...] -a /tmp/corefiles

NB. If you use the --ro option, then virt-rescue will silently not write any core files to /tmp/corefiles.

3.

Inside virt-rescue, mount the core files disk. Note replace /dev/sdb1 with the last disk index. For example if the core files disk is the last of four disks, you would use /dev/sdd1. > <rescue> mkdir /tmp/mnt >

<rescue> mount /dev/sdb1 /tmp/mnt

4.

Enable core dumps in the rescue kernel: > <rescue> echo '/tmp/mnt/core.%p' > /proc/sys/kernel/core_pattern >

<rescue> ulimit -Hc unlimited >
<rescue> ulimit -Sc unlimited

5.

Run the tool that caused the core dump. The core dump will be written to /tmp/mnt/core.PID. > <rescue> ls -l /tmp/mnt

total 1628
-rw------- 1 root root 1941504 Dec 7 13:13 core.130
drwx------ 2 root root 16384 Dec 7 13:00 lost+found

6.

Before exiting virt-rescue, unmount (or at least sync) the disks: > <rescue> umount /tmp/mnt >

<rescue> exit

7.

Outside virt-rescue, the core dump(s) can be removed from the disk using guestfish(1). For example:

guestfish --ro -a /tmp/corefiles -m /dev/sda1 >
<fs> ll / >
<fs> download /core.NNN /tmp/core.NNN

環 境 変 数

Several environment variables affect virt-rescue. See "ENVIRONMENT VARIABLES" in guestfs(3) for the complete list.

フ ァ イ ル

$XDG_CONFIG_HOME/libguestfs/libguestfs-tools.conf
$HOME/.libguestfs-tools.rc
$XDG_CONFIG_DIRS/libguestfs/libguestfs-tools.conf
/etc/libguestfs-tools.conf

This configuration file controls the default read-only or read-write mode (--ro or --rw).

See libguestfs-tools.conf(5).

関 連 項 目

guestfs(3), guestfish(1), virt-cat(1), virt-edit(1), virt-filesystems(1), libguestfs-tools.conf(5), http://libguestfs.org/.

著 者

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

COPYRIGHT

Copyright (C) 2009-2023 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.