Manpages

名 前

virt-ls - 仮 想 マ シ ン の フ ァ イ ル の 一 覧 表 示

書 式

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

virt-ls [--options] domname directory
virt-ls [--options] disk.img [disk.img ...] directory

説 明

"virt-ls" lists filenames, file sizes, checksums, extended attributes and more from a virtual machine or disk image.

Multiple directory names can be given, in which case the output from each is concatenated.

To list directories from a libvirt guest use the -d option to specify the name of the guest. For a disk image, use the -a option.

"virt-ls" can do many simple file listings. For more complicated cases you may need to use guestfish(1), or write a program directly to the guestfs(3) API.

仮 想 マ シ ン に あ る フ ァ イ ル お よ び デ ィ レ ク ト リ ー を す べ て 取 得 し ま す :

virt-ls -R -d guest /

Linux 仮 想 マ シ ン に あ る setuid ま た は setgid プ ロ グ ラ ム を 一 覧 表 示 し ま す :

virt-ls -lR -d guest / | grep '^- [42]'

Linux 仮 想 マ シ ン に あ る す べ て の 全 体 書 き 込 み 可 能 な デ ィ レ ク ト リ ー を 一 覧 表 示 し ま す :

virt-ls -lR -d guest / | grep '^d ...7'

Linux 仮 想 マ シ ン に あ る す べ て の Unix ド メ イ ン ソ ケ ッ ト を 一 覧 表 示 し ま す :

virt-ls -lR -d guest / | grep '^s'

List all regular files with filenames ending in ’.png’:

virt-ls -lR -d guest / | grep -i '^-.*\.png$' ホ ー ム デ ィ レ ク ト リ に あ る 10MB よ り 大 き な フ ァ イ ル を 表 示 す る に は :

virt-ls -lR -d guest /home | awk '$3 > 10*1024*1024'

7日 以 内 に 変 更 さ れ た も の を す べ て 検 索 し ま す :

virt-ls -lR -d guest --time-days / | awk '$6 <= 7'

24時 間 以 内 に 変 更 さ れ た 通 常 の フ ァ イ ル を 検 索 し ま す :

virt-ls -lR -d guest --time-days / | grep '^-' | awk '$6 < 1'

DIFFERENCES IN SNAPSHOTS AND BACKING FILES
Although it is possible to use virt-ls to look for differences, since libguestfs ≥ 1.26 a new tool is available called virt-diff(1).

出 力 モ ー ド

"virt-ls" は 4 つ の 出 力 モ ー ド が あ り ま す 。 -l お よ び -R オ プ シ ョ ン の 異 な る 組 み 合 わ せ に よ り 制 御 さ れ ま す 。 簡 単 な 一 覧 方 法 簡 単 な 一 覧 方 法 は 通 常 の ls(1) コ マ ン ド と 似 て い ま す :

$ virt-ls -d guest /
bin
boot
[etc.] ロ ン グ 形 式 の 一 覧 方 法
-l
(--long) オ プ シ ョ ン を 用 い る と 、 出 力 は "ls -l" コ マ ン ド の よ う に な り ま す ( よ り 具 体 的 に は "guestfs_ll" 関 数 と 似 て い ま す ) 。

$ virt-ls -l -d guest /
total 204
dr-xr-xr-x. 2 root root 4096 2009-08-25 19:06 bin
dr-xr-xr-x. 5 root root 3072 2009-08-25 19:06 boot
[etc.] こ れ は デ ィ レ ク ト リ ー を 表 示 す る た め に 有 用 で す が 、 他 の プ ロ グ ラ ム に お い て こ の 出 力 を 解 析 し な い よ う 注 意 し て く だ さ い 。 代 わ り に "再 帰 的 な ロ ン グ 形 式 の 一 覧 方 法 " を 使 用 し て く だ さ い 。 再 帰 的 な 一 覧 方 法
-R
(--recursive) オ プ シ ョ ン を 用 い る と 、 "virt-ls" は フ ァ イ ル お よ び デ ィ レ ク ト リ ー を 再 帰 的 に 一 覧 表 示 し ま す :

$ virt-ls -R -d guest /tmp
foo
foo/bar
[etc.] こ の 出 力 を 生 成 す る に は 、 "virt-ls" が "guestfs_find0" 関 数 を 実 行 し て 、 "\0" 文 字 を "\n" に 変 換 し ま す 。 再 帰 的 な ロ ン グ 形 式 の 一 覧 方 法
Using -lR options together changes the output to display directories recursively, with file stats, and optionally other features such as checksums and extended attributes.

Most of the interesting features of "virt-ls" are only available when using -lR mode.

The fields are normally space-separated. Filenames are not quoted, so you cannot use the output in another program (because filenames can contain spaces and other unsafe characters). If the guest was untrusted and someone knew you were using "virt-ls" to analyze the guest, they could play tricks on you by creating filenames with embedded newline characters. To safely parse the output in another program, use the --csv (Comma-Separated Values) option.

Note that this output format is completely unrelated to the "ls -lR" command.

$ virt-ls -lR -d guest /bin
d 0555 4096 /bin
- 0755 123 /bin/alsaunmute
- 0755 28328 /bin/arch
l 0777 4 /bin/awk -> gawk
- 0755 27216 /bin/basename
- 0755 943360 /bin/bash
[etc.] こ れ ら の 基 本 的 な 項 目 は 常 に 表 示 さ れ ま す :
type フ ァ イ ル 形 式 。 次 の ど れ か で す : "-" (通 常 の フ ァ イ ル ), "d" (デ ィ レ ク ト リ ー ), "c" (キ ャ ラ ク タ ー デ バ イ ス ), "b" (ブ ロ ッ ク デ バ イ ス ), "p" (名 前 付 き パ イ プ ), "l" (シ ン ボ リ ッ ク リ ン ク ), "s" (ソ ケ ッ ト ) or "u" (不 明 )。 パ ー ミ ッ シ ョ ン

Unix パ ー テ ィ シ ョ ン 。 4 桁 の 8進 数 と し て 表 示 さ れ ま す 。 容 量 フ ァ イ ル の 容 量 。 読 み や す い 形 式 の 数 値 と し て 表 示 す る -h ま た は --human-readable オ プ シ ョ ン が 指 定 さ れ て い な け れ ば 、 バ イ ト 単 位 で 表 示 さ れ ま す 。 パ ス フ ァ イ ル ま た は デ ィ レ ク ト リ の 完 全 パ ス 。 リ ン ク シ ン ボ リ ッ ク リ ン ク の み に 対 し て 、 リ ン ク 先 。

-lR モ ー ド で は 、 追 加 の コ マ ン ド ラ イ ン オ プ シ ョ ン に よ り 、 さ ら な る 項 目 の 表 示 を 有 効 に し ま す 。

--uids フ ラ グ を 用 い る と 、 こ れ ら の 追 加 項 目 が パ ス の 前 に 表 示 さ れ ま す :

uid

gid フ ァ イ ル の 所 有 者 の

UID お よ び GID (数 値 表 記 )。 こ れ ら は Unix 系 の

仮 想 マ シ ン に お い て の み 意 味 が あ る こ と に 注 意 し て く だ さ い 。

--times フ ラ グ が あ る と 、 こ れ ら の 追 加 項 目 が 表 示 さ れ ま す :
atime ア ク セ ス 日 時 。
mtime 最 終 変 更 日 時 。
ctime 最 終 属 性 変 更 日 時 。

--time-t, --time-relative ま た は --time-days フ ラ グ の ど れ か が 指 定 さ れ て い な け れ ば 、 日 付 と 時 間 の 文 字 列 と し て time 項 目 が 表 示 さ れ ま す 。

--extra-stats フ ラ グ を 用 い る と 、 こ れ ら の 追 加 項 目 が 表 示 さ れ ま す :
device

The device containing the file (displayed as major:minor). This may not match devices as known to the guest.

inode

inode 番 号 。

nlink ハ ー ド リ ン ク 数 。
rdev ブ ロ ッ ク お よ び キ ャ ラ ク タ ー ス ペ シ ャ ル フ ァ イ ル に 対 す る 、 デ バ イ ス (メ ジ ャ ー :マ イ ナ ー と し て 表 示 )。 ブ ロ ッ ク フ ァ イ ル に 割 り 当 て ら れ た 512 バ イ ト ブ ロ ッ ク 数 。

With the --checksum flag, the checksum of the file contents is shown (only for regular files). Computing file checksums can take a considerable amount of time.

オ プ シ ョ ン

--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) 参 照 。
--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).

--checksum
--checksum=crc|md5|sha1|sha224|sha256|sha384|sha512

Display checksum over file contents for regular files. With no argument, this defaults to using md5. Using an argument, you can select the checksum type to use. こ の オ プ シ ョ ン は -lR 出 力 モ ー ド に お い て の み 効 果 が あ り ま す 。 上 の "RECURSIVE LONG LISTING" 参 照 。

-c URI
--connect
URI

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

--csv

Write out the results in CSV format (comma-separated values). This format can be imported easily into databases and spreadsheets, but read "NOTE ABOUT CSV FORMAT" below.

-d guest
--domain
guest 名 前 付 き の libvirt 仮 想 マ シ ン か ら す べ て の デ ィ ス ク を 追 加 し ま す 。 名 前 の 代 わ り に 仮 想 マ シ ン の UUID を 使 用 で き ま す 。
--echo-keys
キ ー や パ ス フ レ ー ズ を 入 力 す る と き 、 通 常 virt-ls は エ コ ー を 無 効 化 し ま す 。 そ の た め 、 入 力 内 容 を 確 認 で き ま せ ん 。 テ ン ペ ス ト 攻 撃 の 心 配 が な く 、 部 屋 に 誰 も 居 な け れ ば 、 入 力 内 容 を 確 認 す る た め に こ の フ ラ グ を 指 定 で き ま す 。
--extra-stats

Display extra stats. こ の オ プ シ ョ ン は -lR 出 力 モ ー ド に お い て の み 効 果 が あ り ま す 。 上 の "RECURSIVE LONG LISTING" 参 照 。

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

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

virt-ls --format=raw -a disk.img /dir

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

virt-ls --format=raw -a disk.img --format -a another.img /dir

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

-h

--human-readable 読 み や す い 形 式 で フ ァ イ ル 容 量 を 表 示 し ま す 。 こ の オ プ シ ョ ン は -lR 出 力 モ ー ド に お い て の み 効 果 が あ り ま す 。 上 の "RECURSIVE LONG LISTING" 参 照 。
--key
SELECTOR

Specify a key for LUKS, to automatically open a LUKS device when using the inspection.
--key
NAME:key:KEY_STRING
--key
UUID:key:KEY_STRING
--key all:key:
KEY_STRING

"NAME" is the libguestfs device name (eg. "/dev/sda1"). "UUID" is the device UUID. "all" means try the key against any encrypted device.

Use the specified "KEY_STRING" as passphrase.

--key NAME:file:FILENAME
--key
UUID:file:FILENAME
--key all:file:
FILENAME

Read the passphrase from FILENAME.

--key NAME:clevis
--key
UUID:clevis
--key all:clevis

Attempt passphrase-less unlocking for the device with Clevis, over the network. Please refer to "ENCRYPTED DISKS" in guestfs(3) for more information on network-bound disk encryption (NBDE).

Note that if any such option is present on the command line, QEMU user networking will be automatically enabled for the libguestfs appliance.

--keys-from-stdin

Read key or passphrase parameters from stdin. The default is to try to read passphrases from the user by opening /dev/tty.

If there are multiple encrypted devices then you may need to supply multiple keys on stdin, one per line.

-m dev[:mountpoint[:options[:fstype]]]
--mount
dev[:mountpoint[:options[:fstype]]] 指 定 さ れ た マ ウ ン ト ポ イ ン ト に あ る 、 名 前 付 き パ ー テ ィ シ ョ ン ま た は 論 理 ボ リ ュ ー ム を マ ウ ン ト し ま す 。

If the mountpoint is omitted, it defaults to /.

Specifying any mountpoint disables the inspection of the guest and the mount of its root and all of its mountpoints, so make sure to mount all the mountpoints needed to work with the filenames given as arguments.

If you don’t know what filesystems a disk image contains, you can either run guestfish without this option, then list the partitions, filesystems and LVs available (see "list-partitions", "list-filesystems" and "lvs" commands), or you can use the virt-filesystems(1) program. マ ウ ン ト パ ラ メ ー タ ー の 三 番 目 の (ほ と ん ど 使 用 さ れ な い ) 項 目 は 、 バ ッ ク エ ン ド の フ ァ イ ル シ ス テ ム を マ ウ ン ト す る た め に 使 用 さ れ る マ ウ ン ト オ プ シ ョ ン の 一 覧 で す 。 こ れ が 指 定 さ れ て い な い 場 合 、 マ ウ ン ト オ プ シ ョ ン は 空 文 字 列 ま た は "ro" (--ro フ ラ グ が 使 用 さ れ て い る 場 合 ) に な り ま す 。

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

-l

--long

-R

--recursive

Select the mode. With neither of these options, "virt-ls" produces a simple, flat list of the files in the named directory. See "SIMPLE LISTING".

"virt-ls -l" produces a "long listing", which shows more detail. See "LONG LISTING".

"virt-ls -R" produces a recursive list of files starting at the named directory. See "RECURSIVE LISTING".

"virt-ls -lR" produces a recursive long listing which can be more easily parsed. See "RECURSIVE LONG LISTING".

--times 時 間 の 項 目 を 表 示 し ま す 。 こ の オ プ シ ョ ン は -lR 出 力 モ ー ド に お い て の み 効 果 が あ り ま す 。 上 の "RECURSIVE LONG LISTING" 参 照 。
--time-days

Display time fields as days before now (negative if in the future).

Note that 0 in output means "up to 1 day before now", or that the age of the file is between 0 and 86399 seconds. こ の オ プ シ ョ ン は -lR 出 力 モ ー ド に お い て の み 効 果 が あ り ま す 。 上 の "RECURSIVE LONG LISTING" 参 照 。

--time-relative

Display time fields as seconds before now (negative if in the future). こ の オ プ シ ョ ン は -lR 出 力 モ ー ド に お い て の み 効 果 が あ り ま す 。 上 の "RECURSIVE LONG LISTING" 参 照 。

--time-t

Display time fields as seconds since the Unix epoch. こ の オ プ シ ョ ン は -lR 出 力 モ ー ド に お い て の み 効 果 が あ り ま す 。 上 の "RECURSIVE LONG LISTING" 参 照 。

--uids

UID と GID の 項 目 を 表 示 し ま す 。 こ の オ プ シ ョ ン は -lR 出 力 モ ー ド に お い て の み 効 果 が あ り ま す 。 上 の "RECURSIVE LONG LISTING" 参 照 。

-v

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

-V

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

-x

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

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

前 の バ ー ジ ョ ン の virt-ls に よ り 、 次 の ど ち ら も 書 く こ と が で き ま す :

virt-ls disk.img [disk.img ...] /dir ま た は

virt-ls guestname /dir

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. 互 換 性 の た め 古 い 形 式 が ま だ サ ポ ー ト さ れ て い ま す 。

CSV 形 式 に 関 す る 注 意

Comma-separated values (CSV) is a deceptive format. It seems like it should be easy to parse, but it is definitely not easy to parse. 神 話 : た だ コ ン マ で 項 目 を 区 切 る 。 真 実 : こ れ は 正 し く 動 き ま せ ん 。 こ の 例 は 2 つ の 列 が あ り ま す :

"foo,bar",baz 神 話 : 同 時 に フ ァ イ ル の 1 行 を 読 み 込 み ま す 。 真 実 : こ れ は 正 し く 動 き ま せ ん 。 こ の 例 は 1 つ の 行 が あ り ま す :

"foo
bar",baz

For shell scripts, use "csvtool" (https://github.com/Chris00/ocaml-csv also packaged in major Linux distributions).

For other languages, use a CSV processing library (eg. "Text::CSV" for Perl or Python’s built-in csv library).

Most spreadsheets and databases can import CSV directly.

終 了 ス テ ー タ ス

こ の プ ロ グ ラ ム は 、 成 功 す る と 0 を 、 エ ラ ー が あ る と 0 以 外 を 返 し ま す 。

関 連 項 目

guestfs(3), guestfish(1), virt-cat(1), virt-copy-out(1), virt-diff(1), virt-tar-out(1), 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.