File: ffind.1

package info (click to toggle)
sleuthkit 2.06-3etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 7,128 kB
  • ctags: 5,133
  • sloc: ansic: 41,406; sh: 14,123; perl: 4,745; cpp: 4,297; makefile: 925; python: 29
file content (61 lines) | stat: -rw-r--r-- 1,676 bytes parent folder | download | duplicates (4)
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
.\" Process this file with
.\" groff -man -Tascii foo.1
.\"
.TH FFIND 1 "JAN 2005" "User Manuals"
.SH NAME
ffind \- Find the file or directory name that is using a given inode
.SH SYNOPSIS
.B ffind [-aduvV] [-f fstype] [-i imgtype] [-o imgoffset]
.I image inode
.SH DESCRIPTION
.B ffind
finds the names of files or directories that use 
.I inode
on
.I image.
By default it only will only return the name it finds.  This will
also show the names of deleted file names in some systems such 
as Linux and OpenBSD.   

The arguments are as follows:
.IP "image [images]"
One (or more if split) disk or partition images whose format is given with '-i'.
.IP inode
Integer of inode to find.

The optional arguments are:
.IP -a
Find all occurrences of inode.
.IP -d
Find deleted entries only.
.IP "-f fstype"
Identify the File System type of the image.  Use the -? argument for a
list of supported file system types.
If not given, the default type for the platform is used.
.IP -u
Find undeleted entries only.
.IP "-i imgtype"
Identify the type of image file, such as raw or split.  Raw is the default.
.IP "-o imgoffset"
The sector offset where the file system starts in the image.  Non-512 byte
sectors can be specified using '@' (32@2048).
.IP -v
Verbose output to stderr.
.IP -V
Display version.

.PP
This program searches all directory entries looking for the
given inode.  This is useful when an inode has been identified
from a disk unit address using 
.BR find_inode(1).

.SH EXAMPLE
# ffind -a image 212
.SH "SEE ALSO"
.BR dd (1),
.BR ifind (1)
.SH HISTORY
.BR "ffind" " first appeared in " "TCTUTILs" " v1.0 as " "find_file."
.SH AUTHOR
Brian Carrier <carrier@sleuthkit.org>