2014-04-02 08:29:20 +00:00
|
|
|
btrfs-inspect-internal(8)
|
|
|
|
=========================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2015-11-02 13:41:32 +00:00
|
|
|
btrfs-inspect-internal - query various internal information
|
2014-04-02 08:29:20 +00:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2014-05-19 15:49:35 +00:00
|
|
|
*btrfs inspect-internal* <subcommand> <args>
|
2014-04-02 08:29:20 +00:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2015-11-02 13:41:32 +00:00
|
|
|
|
|
|
|
This command group provides an interface to query internal information. The
|
|
|
|
functionality ranges from a simple UI to an ioctl or a more complex query that
|
|
|
|
assembles the result from several internal structures. The latter usually
|
|
|
|
requires calls to privileged ioctls.
|
2014-04-02 08:29:20 +00:00
|
|
|
|
|
|
|
SUBCOMMAND
|
|
|
|
----------
|
2016-02-22 14:49:50 +00:00
|
|
|
*dump-tree* [options] <device>::
|
|
|
|
(needs root privileges)
|
|
|
|
+
|
|
|
|
Dump the whole tree of the given device.
|
|
|
|
This is useful for analyzing filesystem state or inconsistence and has
|
|
|
|
a positive educational effect on understanding the internal structure.
|
|
|
|
<device> is the device file where the filesystem is stored.
|
|
|
|
+
|
|
|
|
`Options`
|
|
|
|
+
|
|
|
|
-e::::
|
|
|
|
Print detailed extents info.
|
|
|
|
-d::::
|
|
|
|
Print info of btrfs device and root tree dirs only.
|
|
|
|
-r::::
|
|
|
|
Print info of roots only.
|
|
|
|
-R::::
|
|
|
|
Print info of roots and root backups.
|
|
|
|
-u::::
|
|
|
|
Print info of UUID tree only.
|
|
|
|
-b <block_num>::::
|
|
|
|
Print info of the specified block only.
|
|
|
|
-t <tree_id>::::
|
|
|
|
Print only the tree with the specified ID.
|
|
|
|
|
2015-11-02 13:41:32 +00:00
|
|
|
*inode-resolve* [-v] <ino> <path>::
|
|
|
|
(needs root privileges)
|
|
|
|
+
|
|
|
|
resolve paths to all files with given inode number 'ino' in a given subvolume
|
|
|
|
at 'path', ie. all hardlinks
|
2014-04-02 08:29:20 +00:00
|
|
|
+
|
|
|
|
`Options`
|
|
|
|
+
|
|
|
|
-v::::
|
2015-11-02 13:41:32 +00:00
|
|
|
verbose mode, print count of returned paths and ioctl() return value
|
2014-04-02 08:29:20 +00:00
|
|
|
|
2014-05-19 15:49:35 +00:00
|
|
|
*logical-resolve* [-Pv] [-s <bufsize>] <logical> <path>::
|
2015-11-02 13:41:32 +00:00
|
|
|
(needs root privileges)
|
2014-04-02 08:29:20 +00:00
|
|
|
+
|
2015-11-02 13:41:32 +00:00
|
|
|
resolve paths to all files at given 'logical' address in the linear filesystem space
|
2014-04-02 08:29:20 +00:00
|
|
|
+
|
|
|
|
`Options`
|
|
|
|
+
|
|
|
|
-P::::
|
|
|
|
skip the path resolving and print the inodes instead
|
|
|
|
-v::::
|
2015-11-02 13:41:32 +00:00
|
|
|
verbose mode, print count of returned paths and all ioctl() return values
|
2014-04-02 08:29:20 +00:00
|
|
|
-s <bufsize>::::
|
2015-11-02 13:41:32 +00:00
|
|
|
set internal buffer for storing the file names to 'bufsize', default is 4096, maximum 64k
|
2014-04-02 08:29:20 +00:00
|
|
|
|
2015-07-20 15:31:43 +00:00
|
|
|
*min-dev-size* [options] <path>::
|
2015-11-02 13:41:32 +00:00
|
|
|
(needs root privileges)
|
|
|
|
+
|
|
|
|
return the minimum size the device can be shrunk to, without performing any
|
|
|
|
resize operation, this may be useful before executing the actual resize operation
|
2015-07-20 15:31:43 +00:00
|
|
|
+
|
|
|
|
`Options`
|
|
|
|
+
|
2015-11-02 13:41:32 +00:00
|
|
|
--id <id>::::
|
|
|
|
specify the device 'id' to query, default is 1 if this option is not used
|
2015-07-20 15:31:43 +00:00
|
|
|
|
2014-05-19 15:49:35 +00:00
|
|
|
*rootid* <path>::
|
2015-11-02 13:41:32 +00:00
|
|
|
for a given file or directory, return the containing tree root id, for a
|
|
|
|
subvolume itself return it's own tree id (ie. subvol id)
|
2014-04-02 08:29:20 +00:00
|
|
|
+
|
2015-11-02 13:41:32 +00:00
|
|
|
NOTE: The result is undefined for the so-called empty subvolumes (identified by
|
|
|
|
inode number 2), but such subvolume does not contain any files anyway
|
2014-04-02 08:29:20 +00:00
|
|
|
|
2015-01-03 01:17:28 +00:00
|
|
|
*subvolid-resolve* <subvolid> <path>::
|
2015-11-02 13:41:32 +00:00
|
|
|
(needs root privileges)
|
|
|
|
+
|
|
|
|
resolve the absolute path of a the subvolume id 'subvolid'
|
2015-01-03 01:17:28 +00:00
|
|
|
|
2014-04-02 08:29:20 +00:00
|
|
|
EXIT STATUS
|
|
|
|
-----------
|
2014-09-19 01:49:59 +00:00
|
|
|
*btrfs inspect-internal* returns a zero exit status if it succeeds. Non zero is
|
2014-04-02 08:29:20 +00:00
|
|
|
returned in case of failure.
|
|
|
|
|
|
|
|
AVAILABILITY
|
|
|
|
------------
|
2014-05-19 16:04:26 +00:00
|
|
|
*btrfs* is part of btrfs-progs.
|
2014-04-02 08:29:20 +00:00
|
|
|
Please refer to the btrfs wiki http://btrfs.wiki.kernel.org for
|
|
|
|
further details.
|
|
|
|
|
|
|
|
SEE ALSO
|
|
|
|
--------
|
|
|
|
`mkfs.btrfs`(8),
|
|
|
|
`btrfs-debug-tree`(8)
|