forked from cvpcs/android_external_lsof
-
Notifications
You must be signed in to change notification settings - Fork 35
/
lsof.man
3828 lines (2543 loc) · 146 KB
/
lsof.man
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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Maintenance Procedures LSOF(8)
NAME
lsof - list open files
SYNOPSIS
lsof [ -?abChKlnNOPRtUvVX ] [ -A A ] [ -c c ] [ +c c ] [
+|-d d ] [ +|-D D ] [ +|-f [cfgGn] ] [ -F [f] ] [ -g [s] ] [
-i [i] ] [ -k k ] [ +|-L [l] ] [ +|-m m ] [ +|-M ] [ -o [o]
] [ -p s ] [ +|-r [t[m<fmt>]] ] [ -s [p:s] ] [ -S [t] ] [ -T
[t] ] [ -u s ] [ +|-w ] [ -x [fl] ] [ -z [z] ] [ -Z [Z] ] [
-- ] [names]
DESCRIPTION
Lsof revision 4.84 lists on its standard output file infor-
mation about files opened by processes for the following
UNIX dialects:
AIX 5.3
Apple Darwin 9 (Mac OS X 10.5)
FreeBSD 4.9 for x86-based systems
FreeBSD 7.[0123], 8.0 and 9.0 for AMD64-based systems
Linux 2.1.72 and above for x86-based systems
Solaris 9, 10 and 11
(See the DISTRIBUTION section of this manual page for infor-
mation on how to obtain the latest lsof revision.)
An open file may be a regular file, a directory, a block
special file, a character special file, an executing text
reference, a library, a stream or a network file (Internet
socket, NFS file or UNIX domain socket.) A specific file or
all the files in a file system may be selected by path.
Instead of a formatted display, lsof will produce output
that can be parsed by other programs. See the -F, option
description, and the OUTPUT FOR OTHER PROGRAMS section for
more information.
In addition to producing a single output list, lsof will run
in repeat mode. In repeat mode it will produce output,
delay, then repeat the output operation until stopped with
an interrupt or quit signal. See the +|-r [t[m<fmt>]]
option description for more information.
OPTIONS
In the absence of any options, lsof lists all open files
belonging to all active processes.
If any list request option is specified, other list requests
must be specifically requested - e.g., if -U is specified
for the listing of UNIX socket files, NFS files won't be
listed unless -N is also specified; or if a user list is
specified with the -u option, UNIX domain socket files,
SunOS 5.9 Last change: Revision-4.84 1
Maintenance Procedures LSOF(8)
belonging to users not in the list, won't be listed unless
the -U option is also specified.
Normally list options that are specifically stated are ORed
- i.e., specifying the -i option without an address and the
-ufoo option produces a listing of all network files OR
files belonging to processes owned by user ``foo''. The
exceptions are:
1) the `^' (negated) login name or user ID (UID), specified
with the -u option;
2) the `^' (negated) process ID (PID), specified with the -p
option;
3) the `^' (negated) process group ID (PGID), specified with
the -g option;
4) the `^' (negated) command, specified with the -c option;
5) the (`^') negated TCP or UDP protocol state names, speci-
fied with the -s [p:s] option.
Since they represent exclusions, they are applied without
ORing or ANDing and take effect before any other selection
criteria are applied.
The -a option may be used to AND the selections. For exam-
ple, specifying -a, -U, and -ufoo produces a listing of only
UNIX socket files that belong to processes owned by user
``foo''.
Caution: the -a option causes all list selection options to
be ANDed; it can't be used to cause ANDing of selected pairs
of selection options by placing it between them, even though
its placement there is acceptable. Wherever -a is placed,
it causes the ANDing of all selection options.
Items of the same selection set - command names, file
descriptors, network addresses, process identifiers, user
identifiers, zone names, security contexts - are joined in a
single ORed set and applied before the result participates
in ANDing. Thus, for example, specifying [email protected],
[email protected], -a, and -ufff,ggg will select the listing of
files that belong to either login ``fff'' OR ``ggg'' AND
have network connections to either host aaa.bbb OR ccc.ddd.
Options may be grouped together following a single prefix --
e.g., the option set ``-a -b -C'' may be stated as -abC.
However, since values are optional following +|-f, -F, -g,
-i, +|-L, -o, +|-r, -s, -S, -T, -x and -z. when you have no
values for them be careful that the following character
SunOS 5.9 Last change: Revision-4.84 2
Maintenance Procedures LSOF(8)
isn't ambiguous. For example, -Fn might represent the -F
and -n options, or it might represent the n field identifier
character following the -F option. When ambiguity is possi-
ble, start a new option with a `-' character - e.g., ``-F
-n''. If the next option is a file name, follow the possi-
bly ambiguous option with ``--'' - e.g., ``-F -- name''.
Either the `+' or the `-' prefix may be applied to a group
of options. Options that don't take on separate meanings
for each prefix - e.g., -i - may be grouped under either
prefix. Thus, for example, ``+M -i'' may be stated as
``+Mi'' and the group means the same as the separate
options. Be careful of prefix grouping when one or more
options in the group does take on separate meanings under
different prefixes - e.g., +|-M; ``-iM'' is not the same
request as ``-i +M''. When in doubt, use separate options
with appropriate prefixes.
-? -h These two equivalent options select a usage (help)
output list. Lsof displays a shortened form of
this output when it detects an error in the options
supplied to it, after it has displayed messages
explaining each error. (Escape the `?' character
as your shell requires.)
-a This option causes list selection options to be
ANDed, as described above.
-A A This option is available on systems configured for
AFS whose AFS kernel code is implemented via
dynamic modules. It allows the lsof user to
specify A as an alternate name list file where the
kernel addresses of the dynamic modules might be
found. See the lsof FAQ (The FAQ section gives its
location.) for more information about dynamic
modules, their symbols, and how they affect lsof.
-b This option causes lsof to avoid kernel functions
that might block - lstat(2), readlink(2), and
stat(2).
See the BLOCKS AND TIMEOUTS and AVOIDING KERNEL
BLOCKS sections for information on using this
option.
-c c This option selects the listing of files for
processes executing the command that begins with
the characters of c. Multiple commands may be
specified, using multiple -c options. They are
joined in a single ORed set before participating in
AND option selection.
SunOS 5.9 Last change: Revision-4.84 3
Maintenance Procedures LSOF(8)
If c begins with a `^', then the following charac-
ters specify a command name whose processes are to
be ignored (excluded.)
If c begins and ends with a slash ('/'), the char-
acters between the slashes are interpreted as a
regular expression. Shell meta-characters in the
regular expression must be quoted to prevent their
interpretation by the shell. The closing slash may
be followed by these modifiers:
b the regular expression is a basic one.
i ignore the case of letters.
x the regular expression is an extended one
(default).
See the lsof FAQ (The FAQ section gives its loca-
tion.) for more information on basic and extended
regular expressions.
The simple command specification is tested first.
If that test fails, the command regular expression
is applied. If the simple command test succeeds,
the command regular expression test isn't made.
This may result in ``no command found for regex:''
messages when lsof's -V option is specified.
+c w This option defines the maximum number of initial
characters of the name, supplied by the UNIX
dialect, of the UNIX command associated with a pro-
cess to be printed in the COMMAND column. (The
lsof default is nine.)
Note that many UNIX dialects do not supply all com-
mand name characters to lsof in the files and
structures from which lsof obtains command name.
Often dialects limit the number of characters sup-
plied in those sources. For example, Linux 2.4.27
and Solaris 9 both limit command name length to 16
characters.
If w is zero ('0'), all command characters supplied
to lsof by the UNIX dialect will be printed.
If w is less than the length of the column title,
``COMMAND'', it will be raised to that length.
-C This option disables the reporting of any path name
components from the kernel's name cache. See the
KERNEL NAME CACHE section for more information.
SunOS 5.9 Last change: Revision-4.84 4
Maintenance Procedures LSOF(8)
+d s This option causes lsof to search for all open
instances of directory s and the files and direc-
tories it contains at its top level. This option
does NOT descend the directory tree, rooted at s.
The +D D option may be used to request a
full-descent directory tree search, rooted at
directory D.
Processing of the +d option does not follow sym-
bolic links within s unless the -x or -x l option
is also specified. Nor does it search for open
files on file system mount points on subdirectories
of s unless the -x or -x f option is also speci-
fied.
Note: the authority of the user of this option lim-
its it to searching for files that the user has
permission to examine with the system stat(2) func-
tion.
-d s This option specifies a list of file descriptors
(FDs) to exclude from or include in the output
listing. The file descriptors are specified in the
comma-separated set s - e.g., ``cwd,1,3'',
``^6,^2''. (There should be no spaces in the set.)
The list is an exclusion list if all entries of the
set begin with `^'. It is an inclusion list if no
entry begins with `^'. Mixed lists are not permit-
ted.
A file descriptor number range may be in the set as
long as neither member is empty, both members are
numbers, and the ending member is larger than the
starting one - e.g., ``0-7'' or ``3-10''. Ranges
may be specified for exclusion if they have the `^'
prefix - e.g., ``^0-7'' excludes all file descrip-
tors 0 through 7.
Multiple file descriptor numbers are joined in a
single ORed set before participating in AND option
selection.
When there are exclusion and inclusion members in
the set, lsof reports them as errors and exits with
a non-zero return code.
See the description of File Descriptor (FD) output
values in the OUTPUT section for more information
on file descriptor names.
+D D This option causes lsof to search for all open
SunOS 5.9 Last change: Revision-4.84 5
Maintenance Procedures LSOF(8)
instances of directory D and all the files and
directories it contains to its complete depth.
Processing of the +D option does not follow sym-
bolic links within D unless the -x or -x l option
is also specified. Nor does it search for open
files on file system mount points on subdirectories
of D unless the -x or -x f option is also speci-
fied.
Note: the authority of the user of this option lim-
its it to searching for files that the user has
permission to examine with the system stat(2) func-
tion.
Further note: lsof may process this option slowly
and require a large amount of dynamic memory to do
it. This is because it must descend the entire
directory tree, rooted at D, calling stat(2) for
each file and directory, building a list of all the
files it finds, and searching that list for a match
with every open file. When directory D is large,
these steps can take a long time, so use this
option prudently.
-D D This option directs lsof's use of the device cache
file. The use of this option is sometimes res-
tricted. See the DEVICE CACHE FILE section and the
sections that follow it for more information on
this option.
-D must be followed by a function letter; the func-
tion letter may optionally be followed by a path
name. Lsof recognizes these function letters:
? - report device cache file paths
b - build the device cache file
i - ignore the device cache file
r - read the device cache file
u - read and update the device cache file
The b, r, and u functions, accompanied by a path
name, are sometimes restricted. When these func-
tions are restricted, they will not appear in the
description of the -D option that accompanies -h or
-? option output. See the DEVICE CACHE FILE sec-
tion and the sections that follow it for more
information on these functions and when they're
restricted.
The ? function reports the read-only and write
SunOS 5.9 Last change: Revision-4.84 6
Maintenance Procedures LSOF(8)
paths that lsof can use for the device cache file,
the names of any environment variables whose values
lsof will examine when forming the device cache
file path, and the format for the personal device
cache file path. (Escape the `?' character as your
shell requires.)
When available, the b, r, and u functions may be
followed by the device cache file's path. The
standard default is .lsof_hostname in the home
directory of the real user ID that executes lsof,
but this could have been changed when lsof was con-
figured and compiled. (The output of the -h and -?
options show the current default prefix - e.g.,
``.lsof''.) The suffix, hostname, is the first
component of the host's name returned by gethost-
name(2).
When available, the b function directs lsof to
build a new device cache file at the default or
specified path.
The i function directs lsof to ignore the default
device cache file and obtain its information about
devices via direct calls to the kernel.
The r function directs lsof to read the device
cache at the default or specified path, but
prevents it from creating a new device cache file
when none exists or the existing one is improperly
structured. The r function, when specified without
a path name, prevents lsof from updating an
incorrect or outdated device cache file, or creat-
ing a new one in its place. The r function is
always available when it is specified without a
path name argument; it may be restricted by the
permissions of the lsof process.
When available, the u function directs lsof to read
the device cache file at the default or specified
path, if possible, and to rebuild it, if necessary.
This is the default device cache file function when
no -D option has been specified.
+|-f [cfgGn]
f by itself clarifies how path name arguments are
to be interpreted. When followed by c, f, g, G, or
n in any combination it specifies that the listing
of kernel file structure information is to be
enabled (`+') or inhibited (`-').
Normally a path name argument is taken to be a file
SunOS 5.9 Last change: Revision-4.84 7
Maintenance Procedures LSOF(8)
system name if it matches a mounted-on directory
name reported by mount(8), or if it represents a
block device, named in the mount output and associ-
ated with a mounted directory name. When +f is
specified, all path name arguments will be taken to
be file system names, and lsof will complain if any
are not. This can be useful, for example, when the
file system name (mounted-on device) isn't a block
device. This happens for some CD-ROM file systems.
When -f is specified by itself, all path name argu-
ments will be taken to be simple files. Thus, for
example, the ``-f -- /'' arguments direct lsof to
search for open files with a `/' path name, not all
open files in the `/' (root) file system.
Be careful to make sure +f and -f are properly ter-
minated and aren't followed by a character (e.g.,
of the file or file system name) that might be
taken as a parameter. For example, use ``--''
after +f and -f as in these examples.
$ lsof +f -- /file/system/name
$ lsof -f -- /file/name
The listing of information from kernel file struc-
tures, requested with the +f [cfgGn] option form,
is normally inhibited, and is not available in
whole or part for some dialects - e.g., /proc-based
Linux kernels below 2.6.22. When the prefix to f
is a plus sign (`+'), these characters request file
structure information:
c file structure use count (not Linux)
f file structure address (not Linux)
g file flag abbreviations (Linux 2.6.22 and up)
G file flags in hexadecimal (Linux 2.6.22 and up)
n file structure node address (not Linux)
When the prefix is minus (`-') the same characters
disable the listing of the indicated values.
File structure addresses, use counts, flags, and
node addresses may be used to detect more readily
identical files inherited by child processes and
identical files in use by different processes.
Lsof column output can be sorted by output columns
holding the values and listed to identify identical
file use, or lsof field output can be parsed by an
AWK or Perl post-filter script, or by a C program.
SunOS 5.9 Last change: Revision-4.84 8
Maintenance Procedures LSOF(8)
-F f This option specifies a character list, f, that
selects the fields to be output for processing by
another program, and the character that terminates
each output field. Each field to be output is
specified with a single character in f. The field
terminator defaults to NL, but may be changed to
NUL (000). See the OUTPUT FOR OTHER PROGRAMS sec-
tion for a description of the field identification
characters and the field output process.
When the field selection character list is empty,
all standard fields are selected (except the raw
device field, security context and zone field for
compatibility reasons) and the NL field terminator
is used.
When the field selection character list contains
only a zero (`0'), all fields are selected (except
the raw device field for compatibility reasons) and
the NUL terminator character is used.
Other combinations of fields and their associated
field terminator character must be set with expli-
cit entries in f, as described in the OUTPUT FOR
OTHER PROGRAMS section.
When a field selection character identifies an item
lsof does not normally list - e.g., PPID, selected
with -R - specification of the field character -
e.g., ``-FR'' - also selects the listing of the
item.
When the field selection character list contains
the single character `?', lsof will display a help
list of the field identification characters.
(Escape the `?' character as your shell requires.)
-g [s] This option excludes or selects the listing of
files for the processes whose optional process
group IDentification (PGID) numbers are in the
comma-separated set s - e.g., ``123'' or
``123,^456''. (There should be no spaces in the
set.)
PGID numbers that begin with `^' (negation)
represent exclusions.
Multiple PGID numbers are joined in a single ORed
set before participating in AND option selection.
However, PGID exclusions are applied without ORing
or ANDing and take effect before other selection
criteria are applied.
SunOS 5.9 Last change: Revision-4.84 9
Maintenance Procedures LSOF(8)
The -g option also enables the output display of
PGID numbers. When specified without a PGID set
that's all it does.
-i [i] This option selects the listing of files any of
whose Internet address matches the address speci-
fied in i. If no address is specified, this option
selects the listing of all Internet and x.25
(HP-UX) network files.
If -i4 or -i6 is specified with no following
address, only files of the indicated IP version,
IPv4 or IPv6, are displayed. (An IPv6 specifica-
tion may be used only if the dialects supports
IPv6, as indicated by ``[46]'' and ``IPv[46]'' in
lsof's -h or -? output.) Sequentially specifying
-i4, followed by -i6 is the same as specifying -i,
and vice-versa. Specifying -i4, or -i6 after -i is
the same as specifying -i4 or -i6 by itself.
Multiple addresses (up to a limit of 100) may be
specified with multiple -i options. (A port number
or service name range is counted as one address.)
They are joined in a single ORed set before parti-
cipating in AND option selection.
An Internet address is specified in the form (Items
in square brackets are optional.):
[46][protocol][@hostname|hostaddr][:service|port]
where:
46 specifies the IP version, IPv4 or IPv6
that applies to the following address.
'6' may be be specified only if the UNIX
dialect supports IPv6. If neither '4' nor
'6' is specified, the following address
applies to all IP versions.
protocol is a protocol name - TCP, UDP
hostname is an Internet host name. Unless a
specific IP version is specified, open
network files associated with host names
of all versions will be selected.
hostaddr is a numeric Internet IPv4 address in
dot form; or an IPv6 numeric address in
colon form, enclosed in brackets, if the
UNIX dialect supports IPv6. When an IP
version is selected, only its numeric
addresses may be specified.
service is an /etc/services name - e.g., smtp -
or a list of them.
port is a port number, or a list of them.
SunOS 5.9 Last change: Revision-4.84 10
Maintenance Procedures LSOF(8)
IPv6 options may be used only if the UNIX dialect
supports IPv6. To see if the dialect supports
IPv6, run lsof and specify the -h or -? (help)
option. If the displayed description of the -i
option contains ``[46]'' and ``IPv[46]'', IPv6 is
supported.
IPv4 host names and addresses may not be specified
if network file selection is limited to IPv6 with
-i 6. IPv6 host names and addresses may not be
specified if network file selection is limited to
IPv4 with -i 4. When an open IPv4 network file's
address is mapped in an IPv6 address, the open
file's type will be IPv6, not IPv4, and its display
will be selected by '6', not '4'.
At least one address component - 4, 6, protocol,
hostname, hostaddr, or service - must be supplied.
The `@' character, leading the host specification,
is always required; as is the `:', leading the port
specification. Specify either hostname or hos-
taddr. Specify either service name list or port
number list. If a service name list is specified,
the protocol may also need to be specified if the
TCP, UDP and UDPLITE port numbers for the service
name are different. Use any case - lower or upper
- for protocol.
Service names and port numbers may be combined in a
list whose entries are separated by commas and
whose numeric range entries are separated by minus
signs. There may be no embedded spaces, and all
service names must belong to the specified proto-
col. Since service names may contain embedded
minus signs, the starting entry of a range can't be
a service name; it can be a port number, however.
Here are some sample addresses:
-i6 - IPv6 only
TCP:25 - TCP and port 25
@1.2.3.4 - Internet IPv4 host address 1.2.3.4
@[3ffe:1ebc::1]:1234 - Internet IPv6 host address
3ffe:1ebc::1, port 1234
UDP:who - UDP who service port
[email protected]:513 - TCP, port 513 and host name lsof.itap
tcp@foo:1-10,smtp,99 - TCP, ports 1 through 10,
service name smtp, port 99, host name foo
tcp@bar:1-smtp - TCP, ports 1 through smtp, host bar
:time - either TCP, UDP or UDPLITE time service port
-K This option selects the listing of tasks of
SunOS 5.9 Last change: Revision-4.84 11
Maintenance Procedures LSOF(8)
processes, on dialects where task reporting is sup-
ported. (If help output - i.e., the output of the
-h or -? options - shows this option, then task
reporting is supported by the dialect.)
When -K and -a are both specified and the tasks of
a main process are selected by other options, the
main process will also be listed as though it were
a task, but without a task ID. (See the descrip-
tion of the TID column in the OUTPUT section.)
-k k This option specifies a kernel name list file, k,
in place of /vmunix, /mach, etc. This option is
not available under AIX on the IBM RISC/System
6000.
-l This option inhibits the conversion of user ID
numbers to login names. It is also useful when
login name lookup is working improperly or slowly.
+|-L [l] This option enables (`+') or disables (`-') the
listing of file link counts, where they are avail-
able - e.g., they aren't available for sockets, or
most FIFOs and pipes.
When +L is specified without a following number,
all link counts will be listed. When -L is speci-
fied (the default), no link counts will be listed.
When +L is followed by a number, only files having
a link count less than that number will be listed.
(No number may follow -L.) A specification of the
form ``+L1'' will select open files that have been
unlinked. A specification of the form
``+aL1 <file_system>'' will select unlinked open
files on the specified file system.
For other link count comparisons, use field output
(-F) and a post-processing script or program.
+|-m m This option specifies an alternate kernel memory
file or activates mount table supplement process-
ing.
The option form -m m specifies a kernel memory
file, m, in place of /dev/kmem or /dev/mem - e.g.,
a crash dump file.
The option form +m requests that a mount supplement
file be written to the standard output file. All
other options are silently ignored.
SunOS 5.9 Last change: Revision-4.84 12
Maintenance Procedures LSOF(8)
There will be a line in the mount supplement file
for each mounted file system, containing the
mounted file system directory, followed by a single
space, followed by the device number in hexadecimal
"0x" format - e.g.,
/ 0x801
Lsof can use the mount supplement file to get dev-
ice numbers for file systems when it can't get them
via stat(2) or lstat(2).
The option form +m m identifies m as a mount sup-
plement file.
Note: the +m and +m m options are not available for
all supported dialects. Check the output of lsof's
-h or -? options to see if the +m and +m m options
are available.
+|-M Enables (+) or disables (-) the reporting of port-
mapper registrations for local TCP, UDP and UDPLITE
ports. The default reporting mode is set by the
lsof builder with the HASPMAPENABLED #define in the
dialect's machine.h header file; lsof is distri-
buted with the HASPMAPENABLED #define deactivated,
so portmapper reporting is disabled by default and
must be requested with +M. Specifying lsof's -h or
-? option will report the default mode. Disabling
portmapper registration when it is already disabled
or enabling it when already enabled is acceptable.
When portmapper registration reporting is enabled,
lsof displays the portmapper registration (if any)
for local TCP, UDP or UDPLITE ports in square
brackets immediately following the port numbers or
service names - e.g., ``:1234[name]'' or
``:name[100083]''. The registration information
may be a name or number, depending on what the
registering program supplied to the portmapper when
it registered the port.
When portmapper registration reporting is enabled,
lsof may run a little more slowly or even become
blocked when access to the portmapper becomes cong-
ested or stopped. Reverse the reporting mode to
determine if portmapper registration reporting is
slowing or blocking lsof.
For purposes of portmapper registration reporting
lsof considers a TCP, UDP or UDPLITE port local if:
SunOS 5.9 Last change: Revision-4.84 13
Maintenance Procedures LSOF(8)
it is found in the local part of its containing
kernel structure; or if it is located in the
foreign part of its containing kernel structure and
the local and foreign Internet addresses are the
same; or if it is located in the foreign part of
its containing kernel structure and the foreign
Internet address is INADDR_LOOPBACK (127.0.0.1).
This rule may make lsof ignore some foreign ports
on machines with multiple interfaces when the
foreign Internet address is on a different inter-
face from the local one.
See the lsof FAQ (The FAQ section gives its loca-
tion.) for further discussion of portmapper regis-
tration reporting issues.
-n This option inhibits the conversion of network
numbers to host names for network files. Inhibit-
ing conversion may make lsof run faster. It is
also useful when host name lookup is not working
properly.
-N This option selects the listing of NFS files.
-o This option directs lsof to display file offset at
all times. It causes the SIZE/OFF output column
title to be changed to OFFSET. Note: on some UNIX
dialects lsof can't obtain accurate or consistent
file offset information from its kernel data
sources, sometimes just for particular kinds of
files (e.g., socket files.) Consult the lsof FAQ
(The FAQ section gives its location.) for more
information.
The -o and -s options are mutually exclusive; they
can't both be specified. When neither is speci-
fied, lsof displays whatever value - size or offset
- is appropriate and available for the type of the
file.
-o o This option defines the number of decimal digits
(o) to be printed after the ``0t'' for a file
offset before the form is switched to ``0x...''.
An o value of zero (unlimited) directs lsof to use
the ``0t'' form for all offset output.
This option does NOT direct lsof to display offset
at all times; specify -o (without a trailing
number) to do that. This option only specifies the
number of digits after ``0t'' in either mixed size
and offset or offset-only output. Thus, for exam-
ple, to direct lsof to display offset at all times
SunOS 5.9 Last change: Revision-4.84 14
Maintenance Procedures LSOF(8)
with a decimal digit count of 10, use:
-o -o 10
or
-oo10
The default number of digits allowed after ``0t''
is normally 8, but may have been changed by the
lsof builder. Consult the description of the -o o
option in the output of the -h or -? option to
determine the default that is in effect.
-O This option directs lsof to bypass the strategy it
uses to avoid being blocked by some kernel opera-
tions - i.e., doing them in forked child processes.
See the BLOCKS AND TIMEOUTS and AVOIDING KERNEL
BLOCKS sections for more information on kernel
operations that may block lsof.
While use of this option will reduce lsof startup
overhead, it may also cause lsof to hang when the
kernel doesn't respond to a function. Use this
option cautiously.
-p s This option excludes or selects the listing of
files for the processes whose optional process
IDentification (PID) numbers are in the
comma-separated set s - e.g., ``123'' or
``123,^456''. (There should be no spaces in the
set.)
PID numbers that begin with `^' (negation)
represent exclusions.
Multiple process ID numbers are joined in a single
ORed set before participating in AND option selec-
tion. However, PID exclusions are applied without
ORing or ANDing and take effect before other selec-
tion criteria are applied.
-P This option inhibits the conversion of port numbers
to port names for network files. Inhibiting the
conversion may make lsof run a little faster. It
is also useful when port name lookup is not working
properly.
+|-r [t[m<fmt>]]
This option puts lsof in repeat mode. There lsof
lists open files as selected by other options,
delays t seconds (default fifteen), then repeats
the listing, delaying and listing repetitively
SunOS 5.9 Last change: Revision-4.84 15
Maintenance Procedures LSOF(8)
until stopped by a condition defined by the prefix
to the option.