OSDN Git Service

(split) LDP: Update original to LDP v3.65
[linuxjm/LDP_man-pages.git] / original / man5 / proc.5
1 .\" Copyright (C) 1994, 1995 by Daniel Quinlan (quinlan@yggdrasil.com)
2 .\" and Copyright (C) 2002-2008 Michael Kerrisk <mtk.manpages@gmail.com>
3 .\" with networking additions from Alan Cox (A.Cox@swansea.ac.uk)
4 .\" and scsi additions from Michael Neuffer (neuffer@mail.uni-mainz.de)
5 .\" and sysctl additions from Andries Brouwer (aeb@cwi.nl)
6 .\" and System V IPC (as well as various other) additions from
7 .\" Michael Kerrisk <mtk.manpages@gmail.com>
8 .\"
9 .\" %%%LICENSE_START(GPLv2+_DOC_FULL)
10 .\" This is free documentation; you can redistribute it and/or
11 .\" modify it under the terms of the GNU General Public License as
12 .\" published by the Free Software Foundation; either version 2 of
13 .\" the License, or (at your option) any later version.
14 .\"
15 .\" The GNU General Public License's references to "object code"
16 .\" and "executables" are to be interpreted as the output of any
17 .\" document formatting or typesetting system, including
18 .\" intermediate and printed output.
19 .\"
20 .\" This manual is distributed in the hope that it will be useful,
21 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
22 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23 .\" GNU General Public License for more details.
24 .\"
25 .\" You should have received a copy of the GNU General Public
26 .\" License along with this manual; if not, see
27 .\" <http://www.gnu.org/licenses/>.
28 .\" %%%LICENSE_END
29 .\"
30 .\" Modified 1995-05-17 by faith@cs.unc.edu
31 .\" Minor changes by aeb and Marty Leisner (leisner@sdsp.mc.xerox.com).
32 .\" Modified 1996-04-13, 1996-07-22 by aeb@cwi.nl
33 .\" Modified 2001-12-16 by rwhron@earthlink.net
34 .\" Modified 2002-07-13 by jbelton@shaw.ca
35 .\" Modified 2002-07-22, 2003-05-27, 2004-04-06, 2004-05-25
36 .\"    by Michael Kerrisk <mtk.manpages@gmail.com>
37 .\" 2004-11-17, mtk -- updated notes on /proc/loadavg
38 .\" 2004-12-01, mtk, rtsig-max and rtsig-nr went away in 2.6.8
39 .\" 2004-12-14, mtk, updated 'statm', and fixed error in order of list
40 .\" 2005-05-12, mtk, updated 'stat'
41 .\" 2005-07-13, mtk, added /proc/sys/fs/mqueue/*
42 .\" 2005-09-16, mtk, Added /proc/sys/fs/suid_dumpable
43 .\" 2005-09-19, mtk, added /proc/zoneinfo
44 .\" 2005-03-01, mtk, moved /proc/sys/fs/mqueue/* material to mq_overview.7.
45 .\" 2008-06-05, mtk, Added /proc/[pid]/oom_score, /proc/[pid]/oom_adj,
46 .\"     /proc/[pid]/limits, /proc/[pid]/mountinfo, /proc/[pid]/mountstats,
47 .\"     and /proc/[pid]/fdinfo/*.
48 .\" 2008-06-19, mtk, Documented /proc/[pid]/status.
49 .\" 2008-07-15, mtk, added /proc/config.gz
50 .\"
51 .\" FIXME 2.6.13 seems to have /proc/vmcore implemented
52 .\" in the source code, but there is no option available under
53 .\" 'make xconfig'; eventually this should be fixed, and then info
54 .\" from the patch-2.6.13 and change log could be used to write an
55 .\" entry in this man page.
56 .\" Needs CONFIG_VMCORE
57 .\"
58 .\" FIXME cross check against Documentation/filesystems/proc.txt
59 .\" to see what information could be imported from that file
60 .\" into this file.
61 .\"
62 .TH PROC 5 2014-04-12 "Linux" "Linux Programmer's Manual"
63 .SH NAME
64 proc \- process information pseudo-filesystem
65 .SH DESCRIPTION
66 The
67 .I proc
68 filesystem is a pseudo-filesystem which provides an interface to
69 kernel data structures.
70 It is commonly mounted at
71 .IR /proc .
72 Most of it is read-only, but some files allow kernel variables to be
73 changed.
74 .LP
75 The following list describes many of the files and directories under the
76 .I /proc
77 hierarchy.
78 .PD 1
79 .TP
80 .I /proc/[pid]
81 There is a numerical subdirectory for each running process; the
82 subdirectory is named by the process ID.
83 Each such subdirectory contains the following
84 pseudo-files and directories.
85 .\" FIXME Describe /proc/[pid]/attr and
86 .\"       /proc/[pid]/task/[tid]/attr
87 .\"       This is a directory
88 .\"       Added in ???
89 .\"       CONFIG_SECURITY
90 .\"
91 .TP
92 .IR /proc/[pid]/auxv " (since 2.6.0-test7)"
93 This contains the contents of the ELF interpreter information passed
94 to the process at exec time.
95 The format is one \fIunsigned long\fP ID
96 plus one \fIunsigned long\fP value for each entry.
97 The last entry contains two zeros.
98 .TP
99 .IR /proc/[pid]/cgroup " (since Linux 2.6.24)"
100 .\"       Info in Documentation/cgroups/cgroups.txt
101 This file describes control groups to which the process/task belongs.
102 For each cgroup hierarchy there is one entry containing
103 colon-separated fields of the form:
104 .nf
105 .ft CW
106
107     5:cpuacct,cpu,cpuset:/daemons
108 .ft
109 .fi
110 .IP
111 The colon-separated fields are, from left to right:
112 .RS 11
113 .IP 1. 3
114 hierarchy ID number
115 .IP 2.
116 set of subsystems bound to the hierarchy
117 .IP 3.
118 control group in the hierarchy to which the process belongs
119 .RE
120 .IP
121 This file is present only if the
122 .B CONFIG_CGROUPS
123 kernel configuration option is enabled.
124 .TP
125 .IR /proc/[pid]/clear_refs " (since Linux 2.6.22)"
126 .\" commit b813e931b4c8235bb42e301096ea97dbdee3e8fe (2.6.22)
127 .\" commit 398499d5f3613c47f2143b8c54a04efb5d7a6da9 (2.6.32)
128 .\" commit 040fa02077de01c7e08fa75be6125e4ca5636011 (3.11)
129 .\"
130 .\"       "Clears page referenced bits shown in smaps output"
131 .\"       write-only, writable only by the owner of the process
132
133 This is a write-only file, writable only by owner of the process.
134
135 The following values may be written to the file:
136 .RS
137 .TP
138 1 (since Linux 2.6.22)
139 .\" Internally: CLEAR_REFS_ALL
140 Reset the PG_Referenced and ACCESSED/YOUNG
141 bits for all the pages associated with the process.
142 (Before kernel 2.6.32, writing any nonzero value to this file
143 had this effect.)
144 .TP
145 2 (since Linux 2.6.32)
146 .\" Internally: CLEAR_REFS_ANON
147 Reset the PG_Referenced and ACCESSED/YOUNG
148 bits for all anonymous pages associated with the process.
149 .TP
150 3 (since Linux 2.6.32)
151 .\" Internally: CLEAR_REFS_MAPPED
152 Reset the PG_Referenced and ACCESSED/YOUNG
153 bits for all file-mapped pages associated with the process.
154 .RE
155 .IP
156 Clearing the PG_Referenced and ACCESSED/YOUNG bits provides a method
157 to measure approximately how much memory a process is using.
158 One first inspects the values in the "Referenced:" fields
159 for the VMAs shown in
160 .IR /proc/[pid]/smaps
161 to get an idea of the memory footprint of the
162 process.
163 One then clears the PG_Referenced and ACCESSED/YOUNG bits
164 and, after some measured time interval,
165 once again inspects the values in the "Referenced:" fields
166 to get an idea of the change in memory footprint of the
167 process during the measured interval.
168 If one is interested only in inspecting the selected mapping types,
169 then the value 2 or 3 can be used instead of 1.
170
171 A further value can be written to affect a different bit:
172 .RS
173 .TP
174 4 (since Linux 3.11)
175 Clear the soft-dirty bit for all the pages associated with the process.
176 .\" Internally: CLEAR_REFS_SOFT_DIRTY
177 This is used (in conjunction with
178 .IR /proc/[pid]/pagemap )
179 by the check-point restore system to discover which pages of a process
180 have been dirtied since the file
181 .IR /proc/[pid]/clear_refs
182 was written to.
183 .RE
184 .IP
185 Writing any value to
186 .IR /proc/[pid]/clear_refs
187 other than those listed above has no effect.
188
189 The
190 .IR /proc/[pid]/clear_refs
191 file is present only if the
192 .B CONFIG_PROC_PAGE_MONITOR
193 kernel configuration option is enabled.
194 .TP
195 .I /proc/[pid]/cmdline
196 This holds the complete command line for the process,
197 unless the process is a zombie.
198 .\" In 2.3.26, this also used to be true if the process was swapped out.
199 In the latter case, there is nothing in this file:
200 that is, a read on this file will return 0 characters.
201 The command-line arguments appear in this file as a set of
202 strings separated by null bytes (\(aq\\0\(aq),
203 with a further null byte after the last string.
204 .TP
205 .IR /proc/[pid]/coredump_filter " (since kernel 2.6.23)"
206 See
207 .BR core (5).
208 .TP
209 .IR /proc/[pid]/cpuset " (since kernel 2.6.12)"
210 .\" and/proc/[pid]/task/[tid]/cpuset
211 See
212 .BR cpuset (7).
213 .TP
214 .I /proc/[pid]/cwd
215 This is a symbolic link to the current working directory of the process.
216 To find out the current working directory of process 20,
217 for instance, you can do this:
218
219 .in +4n
220 .nf
221 .RB "$" " cd /proc/20/cwd; /bin/pwd"
222 .fi
223 .in
224
225 Note that the
226 .I pwd
227 command is often a shell built-in, and might
228 not work properly.
229 In
230 .BR bash (1),
231 you may use
232 .IR "pwd\ \-P" .
233
234 .\" The following was still true as at kernel 2.6.13
235 In a multithreaded process, the contents of this symbolic link
236 are not available if the main thread has already terminated
237 (typically by calling
238 .BR pthread_exit (3)).
239 .TP
240 .I /proc/[pid]/environ
241 This file contains the environment for the process.
242 The entries are separated by null bytes (\(aq\\0\(aq),
243 and there may be a null byte at the end.
244 Thus, to print out the environment of process 1, you would do:
245 .in +4n
246 .nf
247
248 .ft CW
249 .RB "$" " strings /proc/1/environ"
250 .fi
251 .ft P
252 .in
253 .TP
254 .I /proc/[pid]/exe
255 Under Linux 2.2 and later, this file is a symbolic link
256 containing the actual pathname of the executed command.
257 This symbolic link can be dereferenced normally; attempting to open
258 it will open the executable.
259 You can even type
260 .I /proc/[pid]/exe
261 to run another copy of the same executable as is being run by
262 process [pid].
263 .\" The following was still true as at kernel 2.6.13
264 In a multithreaded process, the contents of this symbolic link
265 are not available if the main thread has already terminated
266 (typically by calling
267 .BR pthread_exit (3)).
268
269 Under Linux 2.0 and earlier
270 .I /proc/[pid]/exe
271 is a pointer to the binary which was executed,
272 and appears as a symbolic link.
273 A
274 .BR readlink (2)
275 call on this file under Linux 2.0 returns a string in the format:
276
277     [device]:inode
278
279 For example, [0301]:1502 would be inode 1502 on device major 03 (IDE,
280 MFM, etc. drives) minor 01 (first partition on the first drive).
281
282 .BR find (1)
283 with the
284 .I \-inum
285 option can be used to locate the file.
286 .TP
287 .I /proc/[pid]/fd/
288 This is a subdirectory containing one entry for each file which the
289 process has open, named by its file descriptor, and which is a
290 symbolic link to the actual file.
291 Thus, 0 is standard input, 1 standard output, 2 standard error, and so on.
292
293 For file descriptors for pipes and sockets,
294 the entries will be symbolic links whose content is the
295 file type with the inode.
296 A
297 .BR readlink (2)
298 call on this file returns a string in the format:
299
300     type:[inode]
301
302 For example,
303 .I socket:[2248868]
304 will be a socket and its inode is 2248868.
305 For sockets, that inode can be used to find more information
306 in one of the files under
307 .IR /proc/net/ .
308
309 For file descriptors that have no corresponding inode
310 (e.g., file descriptors produced by
311 .BR epoll_create (2),
312 .BR eventfd (2),
313 .BR inotify_init (2),
314 .BR signalfd (2),
315 and
316 .BR timerfd (2)),
317 the entry will be a symbolic link with contents of the form
318
319     anon_inode:<file-type>
320
321 In some cases, the
322 .I file-type
323 is surrounded by square brackets.
324
325 For example, an epoll file descriptor will have a symbolic link
326 whose content is the string
327 .IR "anon_inode:[eventpoll]" .
328
329 .\"The following was still true as at kernel 2.6.13
330 In a multithreaded process, the contents of this directory
331 are not available if the main thread has already terminated
332 (typically by calling
333 .BR pthread_exit (3)).
334
335 Programs that will take a filename as a command-line argument,
336 but will not take input from standard input if no argument is supplied,
337 or that write to a file named as a command-line argument,
338 but will not send their output to standard output
339 if no argument is supplied, can nevertheless be made to use
340 standard input or standard out using
341 .IR /proc/[pid]/fd .
342 For example, assuming that
343 .I \-i
344 is the flag designating an input file and
345 .I \-o
346 is the flag designating an output file:
347 .in +4n
348 .nf
349
350 .RB "$" " foobar \-i /proc/self/fd/0 \-o /proc/self/fd/1 ..."
351 .fi
352 .in
353
354 and you have a working filter.
355 .\" The following is not true in my tests (MTK):
356 .\" Note that this will not work for
357 .\" programs that seek on their files, as the files in the fd directory
358 .\" are not seekable.
359
360 .I /proc/self/fd/N
361 is approximately the same as
362 .I /dev/fd/N
363 in some UNIX and UNIX-like systems.
364 Most Linux MAKEDEV scripts symbolically link
365 .I /dev/fd
366 to
367 .IR /proc/self/fd ,
368 in fact.
369
370 Most systems provide symbolic links
371 .IR /dev/stdin ,
372 .IR /dev/stdout ,
373 and
374 .IR /dev/stderr ,
375 which respectively link to the files
376 .IR 0 ,
377 .IR 1 ,
378 and
379 .IR 2
380 in
381 .IR /proc/self/fd .
382 Thus the example command above could be written as:
383 .in +4n
384 .nf
385
386 .RB "$" " foobar \-i /dev/stdin \-o /dev/stdout ..."
387 .fi
388 .in
389 .\" FIXME Describe /proc/[pid]/loginuid
390 .\"       Added in 2.6.11; updating requires CAP_AUDIT_CONTROL
391 .\"       CONFIG_AUDITSYSCALL
392 .TP
393 .IR /proc/[pid]/fdinfo/ " (since kernel 2.6.22)"
394 This is a subdirectory containing one entry for each file which the
395 process has open, named by its file descriptor.
396 The contents of each file can be read to obtain information
397 about the corresponding file descriptor, for example:
398 .in +4n
399 .nf
400
401 .RB "$" " cat /proc/12015/fdinfo/4"
402 pos:    1000
403 flags:  01002002
404 .fi
405 .in
406
407 The
408 .I pos
409 field is a decimal number showing the current file offset.
410 The
411 .I flags
412 field is an octal number that displays the
413 file access mode and file status flags (see
414 .BR open (2)).
415
416 The files in this directory are readable only by the owner of the process.
417 .\" FIXME
418 .\" Certain file types include additional info; see
419 .\" Documentation/filesystems/proc.txt
420 .\"
421 .\" Especially interesting is this:
422 .\"
423 .\"     commit ab49bdecc3ebb46ab661f5f05d5c5ea9606406c6
424 .\"     Author: Cyrill Gorcunov <gorcunov@openvz.org>
425 .\"     Date:   Mon Dec 17 16:05:06 2012 -0800
426 .\"
427 .\" Basically, the /proc/PID/fdinfo/ entry for an inotify FD
428 .\" includes the file handles for all watched FDs
429 .\"
430 .TP
431 .IR /proc/[pid]/io " (since kernel 2.6.20)"
432 .\" commit 7c3ab7381e79dfc7db14a67c6f4f3285664e1ec2
433 This file contains I/O statistics for the process, for example:
434 .in +4n
435 .nf
436
437 .RB "#" " cat /proc/3828/io"
438 rchar: 323934931
439 wchar: 323929600
440 syscr: 632687
441 syscw: 632675
442 read_bytes: 0
443 write_bytes: 323932160
444 cancelled_write_bytes: 0
445 .fi
446 .in
447
448 The fields are as follows:
449 .RS
450 .TP
451 .IR rchar ": characters read"
452 The number of bytes which this task has caused to be read from storage.
453 This is simply the sum of bytes which this process passed to
454 .BR read (2)
455 and similar system calls.
456 It includes things such as terminal I/O and
457 is unaffected by whether or not actual
458 physical disk I/O was required (the read might have been satisfied from
459 pagecache).
460 .TP
461 .IR wchar ": characters written"
462 The number of bytes which this task has caused, or shall cause to be written
463 to disk.
464 Similar caveats apply here as with
465 .IR rchar .
466 .TP
467 .IR syscr ": read syscalls"
468 Attempt to count the number of read I/O operations\(emthat is,
469 system calls such as
470 .BR read (2)
471 and
472 .BR pread (2).
473 .TP
474 .IR syscw ": write syscalls"
475 Attempt to count the number of write I/O operations\(emthat is,
476 system calls such as
477 .BR write (2)
478 and
479 .BR pwrite (2).
480 .TP
481 .IR read_bytes ": bytes read"
482 Attempt to count the number of bytes which this process really did cause to
483 be fetched from the storage layer.
484 This is accurate for block-backed filesystems.
485 .TP
486 .IR write_bytes ": bytes written"
487 Attempt to count the number of bytes which this process caused to be sent to
488 the storage layer.
489 .TP
490 .IR cancelled_write_bytes :
491 The big inaccuracy here is truncate.
492 If a process writes 1MB to a file and then deletes the file,
493 it will in fact perform no writeout.
494 But it will have been accounted as having caused 1MB of write.
495 In other words: this field represents the number of bytes which this process
496 caused to not happen, by truncating pagecache.
497 A task can cause "negative" I/O too.
498 If this task truncates some dirty pagecache,
499 some I/O which another task has been accounted for
500 (in its
501 .IR write_bytes )
502 will not be happening.
503 .RE
504 .IP
505 .IR Note :
506 In the current implementation, things are a bit racy on 32-bit systems:
507 if process A reads process B's
508 .I /proc/[pid]/io
509 while process B is updating one of these 64-bit counters,
510 process A could see an intermediate result.
511 .TP
512 .IR /proc/[pid]/limits " (since kernel 2.6.24)"
513 This file displays the soft limit, hard limit, and units of measurement
514 for each of the process's resource limits (see
515 .BR getrlimit (2)).
516 Up to and including Linux 2.6.35,
517 this file is protected to allow reading only by the real UID of the process.
518 Since Linux 2.6.36,
519 .\" commit 3036e7b490bf7878c6dae952eec5fb87b1106589
520 this file is readable by all users on the system.
521 .TP
522 .IR /proc/[pid]/map_files/ " (since kernel 3.3)
523 .\" commit 640708a2cff7f81e246243b0073c66e6ece7e53e
524 This subdirectory contains entries corresponding to memory-mapped
525 files (see
526 .BR mmap (2)).
527 Entries are named by memory region start and end
528 address pair (expressed as hexadecimal numbers),
529 and are symbolic links to the mapped files themselves.
530 Here is an example, with the output wrapped and reformatted to fit on an 80-column display:
531 .in +4n
532 .nf
533
534 .RB "$" " ls -l /proc/self/map_files/"
535 lr\-\-\-\-\-\-\-\-. 1 root root 64 Apr 16 21:31
536             3252e00000\-3252e20000 \-> /usr/lib64/ld-2.15.so
537 \&...
538 .fi
539 .in
540
541 Although these entries are present for memory regions that were
542 mapped with  the
543 .BR MAP_FILE
544 flag, the way anonymous shared memory (regions created with the
545 .B MAP_ANON | MAP_SHARED
546 flags)
547 is implemented in Linux
548 means that such regions also appear on this directory.
549 Here is an example where the target file is the deleted
550 .I /dev/zero
551 one:
552 .in +4n
553 .nf
554
555 .RB
556 lrw\-\-\-\-\-\-\-. 1 root root 64 Apr 16 21:33
557             7fc075d2f000\-7fc075e6f000 \-> /dev/zero (deleted)
558 .fi
559 .in
560
561 This directory appears only if the
562 .B CONFIG_CHECKPOINT_RESTORE
563 kernel configuration option is enabled.
564 .TP
565 .I /proc/[pid]/maps
566 A file containing the currently mapped memory regions and their access
567 permissions.
568 See
569 .BR mmap (2)
570 for some further information about memory mappings.
571
572 The format of the file is:
573
574 .in -7n
575 .nf
576 .ft CW
577 .ft
578 .I "address           perms offset  dev   inode       pathname"
579 00400000-00452000 r-xp 00000000 08:02 173521      /usr/bin/dbus-daemon
580 00651000-00652000 r--p 00051000 08:02 173521      /usr/bin/dbus-daemon
581 00652000-00655000 rw-p 00052000 08:02 173521      /usr/bin/dbus-daemon
582 00e03000-00e24000 rw-p 00000000 00:00 0           [heap]
583 00e24000-011f7000 rw-p 00000000 00:00 0           [heap]
584 \&...
585 35b1800000-35b1820000 r-xp 00000000 08:02 135522  /usr/lib64/ld-2.15.so
586 35b1a1f000-35b1a20000 r--p 0001f000 08:02 135522  /usr/lib64/ld-2.15.so
587 35b1a20000-35b1a21000 rw-p 00020000 08:02 135522  /usr/lib64/ld-2.15.so
588 35b1a21000-35b1a22000 rw-p 00000000 00:00 0
589 35b1c00000-35b1dac000 r-xp 00000000 08:02 135870  /usr/lib64/libc-2.15.so
590 35b1dac000-35b1fac000 ---p 001ac000 08:02 135870  /usr/lib64/libc-2.15.so
591 35b1fac000-35b1fb0000 r--p 001ac000 08:02 135870  /usr/lib64/libc-2.15.so
592 35b1fb0000-35b1fb2000 rw-p 001b0000 08:02 135870  /usr/lib64/libc-2.15.so
593 \&...
594 f2c6ff8c000-7f2c7078c000 rw-p 00000000 00:00 0    [stack:986]
595 \&...
596 7fffb2c0d000-7fffb2c2e000 rw-p 00000000 00:00 0   [stack]
597 7fffb2d48000-7fffb2d49000 r-xp 00000000 00:00 0   [vdso]
598 .fi
599 .in
600
601 The
602 .I address
603 field is the address space in the process that the mapping occupies.
604 The
605 .I perms
606 field is a set of permissions:
607
608 .nf
609 .in +5
610 r = read
611 w = write
612 x = execute
613 s = shared
614 p = private (copy on write)
615 .fi
616 .in
617
618 The
619 .I offset
620 field is the offset into the file/whatever;
621 .I dev
622 is the device
623 (major:minor);
624 .I inode
625 is the inode on that device.
626 0 indicates that no inode is associated with the memory region,
627 as would be the case with BSS (uninitialized data).
628
629 The
630 .I pathname
631 field will usually be the file that is backing the mapping.
632 For ELF files,
633 you can easily coordinate with the
634 .I offset
635 field by looking at the
636 Offset field in the ELF program headers
637 .RI ( "readelf\ \-l" ).
638
639 There are additional helpful pseudo-paths:
640 .RS 12
641 .TP
642 .IR [stack]
643 The initial process's (also known as the main thread's) stack.
644 .TP
645 .IR [stack:<tid>] " (since Linux 3.4)"
646 .\" commit b76437579d1344b612cf1851ae610c636cec7db0
647 A thread's stack (where the
648 .IR <tid>
649 is a thread ID).
650 It corresponds to the
651 .IR /proc/[pid]/task/[tid]/
652 path.
653 .TP
654 .IR [vdso]
655 The virtual dynamically linked shared object.
656 .TP
657 .IR [heap]
658 The process's heap.
659 .in
660 .RE
661 .IP
662 If the
663 .I pathname
664 field is blank,
665 this is an anonymous mapping as obtained via the
666 .BR mmap (2)
667 function.
668 There is no easy way to coordinate this back to a process's source,
669 short of running it through
670 .BR gdb (1),
671 .BR strace (1),
672 or similar.
673
674 Under Linux 2.0 there is no field giving pathname.
675 .TP
676 .I /proc/[pid]/mem
677 This file can be used to access the pages of a process's memory through
678 .BR open (2),
679 .BR read (2),
680 and
681 .BR lseek (2).
682 .TP
683 .IR /proc/[pid]/mountinfo " (since Linux 2.6.26)"
684 .\" This info adapted from Documentation/filesystems/proc.txt
685 This file contains information about mount points.
686 It contains lines of the form:
687 .nf
688 .ft CW
689
690 36 35 98:0 /mnt1 /mnt2 rw,noatime master:1 - ext3 /dev/root rw,errors=continue
691 (1)(2)(3)   (4)   (5)      (6)      (7)   (8) (9)   (10)         (11)
692 .ft
693 .fi
694 .IP
695 The numbers in parentheses are labels for the descriptions below:
696 .RS 7
697 .TP 5
698 (1)
699 mount ID: unique identifier of the mount (may be reused after
700 .BR umount (2)).
701 .TP
702 (2)
703 parent ID: ID of parent mount (or of self for the top of the mount tree).
704 .TP
705 (3)
706 major:minor: value of
707 .I st_dev
708 for files on filesystem (see
709 .BR stat (2)).
710 .TP
711 (4)
712 root: root of the mount within the filesystem.
713 .TP
714 (5)
715 mount point: mount point relative to the process's root.
716 .TP
717 (6)
718 mount options: per-mount options.
719 .TP
720 (7)
721 optional fields: zero or more fields of the form "tag[:value]".
722 .TP
723 (8)
724 separator: marks the end of the optional fields.
725 .TP
726 (9)
727 filesystem type: name of filesystem in the form "type[.subtype]".
728 .TP
729 (10)
730 mount source: filesystem-specific information or "none".
731 .TP
732 (11)
733 super options: per-superblock options.
734 .RE
735 .IP
736 Parsers should ignore all unrecognized optional fields.
737 Currently the possible optional fields are:
738 .RS 12
739 .TP 18
740 shared:X
741 mount is shared in peer group X
742 .TP
743 master:X
744 mount is slave to peer group X
745 .TP
746 propagate_from:X
747 mount is slave and receives propagation from peer group X (*)
748 .TP
749 unbindable
750 mount is unbindable
751 .RE
752 .IP
753 (*) X is the closest dominant peer group under the process's root.
754 If X is the immediate master of the mount,
755 or if there is no dominant peer group under the same root,
756 then only the "master:X" field is present
757 and not the "propagate_from:X" field.
758
759 For more information on mount propagation see:
760 .I Documentation/filesystems/sharedsubtree.txt
761 in the Linux kernel source tree.
762 .TP
763 .IR /proc/[pid]/mounts " (since Linux 2.4.19)"
764 This is a list of all the filesystems currently mounted in the
765 process's mount namespace.
766 The format of this file is documented in
767 .BR fstab (5).
768 Since kernel version 2.6.15, this file is pollable:
769 after opening the file for reading, a change in this file
770 (i.e., a filesystem mount or unmount) causes
771 .BR select (2)
772 to mark the file descriptor as readable, and
773 .BR poll (2)
774 and
775 .BR epoll_wait (2)
776 mark the file as having an error condition.
777 .TP
778 .IR /proc/[pid]/mountstats " (since Linux 2.6.17)"
779 This file exports information (statistics, configuration information)
780 about the mount points in the process's name space.
781 Lines in this file have the form:
782 .nf
783
784 device /dev/sda7 mounted on /home with fstype ext3 [statistics]
785 (       1      )            ( 2 )             (3 ) (4)
786 .fi
787 .IP
788 The fields in each line are:
789 .RS 7
790 .TP 5
791 (1)
792 The name of the mounted device
793 (or "nodevice" if there is no corresponding device).
794 .TP
795 (2)
796 The mount point within the filesystem tree.
797 .TP
798 (3)
799 The filesystem type.
800 .TP
801 (4)
802 Optional statistics and configuration information.
803 Currently (as at Linux 2.6.26), only NFS filesystems export
804 information via this field.
805 .RE
806 .IP
807 This file is readable only by the owner of the process.
808 .TP
809 .IR /proc/[pid]/ns/ " (since Linux 3.0)"
810 .\" See commit 6b4e306aa3dc94a0545eb9279475b1ab6209a31f
811 This is a subdirectory containing one entry for each namespace that
812 supports being manipulated by
813 .BR setns (2).
814 For information about namespaces, see
815 .BR clone (2).
816 .TP
817 .IR /proc/[pid]/ns/ipc " (since Linux 3.0)"
818 Bind mounting this file (see
819 .BR mount (2))
820 to somewhere else in the filesystem keeps
821 the IPC namespace of the process specified by
822 .I pid
823 alive even if all processes currently in the namespace terminate.
824
825 Opening this file returns a file handle for the IPC namespace
826 of the process specified by
827 .IR pid .
828 As long as this file descriptor remains open,
829 the IPC namespace will remain alive,
830 even if all processes in the namespace terminate.
831 The file descriptor can be passed to
832 .BR setns (2).
833 .TP
834 .IR /proc/[pid]/ns/net " (since Linux 3.0)"
835 Bind mounting this file (see
836 .BR mount (2))
837 to somewhere else in the filesystem keeps
838 the network namespace of the process specified by
839 .I pid
840 alive even if all processes in the namespace terminate.
841
842 Opening this file returns a file handle for the network namespace
843 of the process specified by
844 .IR pid .
845 As long as this file descriptor remains open,
846 the network namespace will remain alive,
847 even if all processes in the namespace terminate.
848 The file descriptor can be passed to
849 .BR setns (2).
850 .TP
851 .IR /proc/[pid]/ns/uts " (since Linux 3.0)"
852 Bind mounting this file (see
853 .BR mount (2))
854 to somewhere else in the filesystem keeps
855 the UTS namespace of the process specified by
856 .I pid
857 alive even if all processes currently in the namespace terminate.
858
859 Opening this file returns a file handle for the UTS namespace
860 of the process specified by
861 .IR pid .
862 As long as this file descriptor remains open,
863 the UTS namespace will remain alive,
864 even if all processes in the namespace terminate.
865 The file descriptor can be passed to
866 .BR setns (2).
867 .TP
868 .IR /proc/[pid]/numa_maps " (since Linux 2.6.14)"
869 See
870 .BR numa (7).
871 .TP
872 .IR /proc/[pid]/oom_adj " (since Linux 2.6.11)"
873 This file can be used to adjust the score used to select which process
874 should be killed in an out-of-memory (OOM) situation.
875 The kernel uses this value for a bit-shift operation of the process's
876 .IR oom_score
877 value:
878 valid values are in the range \-16 to +15,
879 plus the special value \-17,
880 which disables OOM-killing altogether for this process.
881 A positive score increases the likelihood of this
882 process being killed by the OOM-killer;
883 a negative score decreases the likelihood.
884 .IP
885 The default value for this file is 0;
886 a new process inherits its parent's
887 .I oom_adj
888 setting.
889 A process must be privileged
890 .RB ( CAP_SYS_RESOURCE )
891 to update this file.
892 .IP
893 Since Linux 2.6.36, use of this file is deprecated in favor of
894 .IR /proc/[pid]/oom_score_adj .
895 .TP
896 .IR /proc/[pid]/oom_score " (since Linux 2.6.11)"
897 .\" See mm/oom_kill.c::badness() in the 2.6.25 sources
898 This file displays the current score that the kernel gives to
899 this process for the purpose of selecting a process
900 for the OOM-killer.
901 A higher score means that the process is more likely to be
902 selected by the OOM-killer.
903 The basis for this score is the amount of memory used by the process,
904 with increases (+) or decreases (\-) for factors including:
905 .\" See mm/oom_kill.c::badness() in the 2.6.25 sources
906 .RS
907 .IP * 2
908 whether the process creates a lot of children using
909 .BR fork (2)
910 (+);
911 .IP *
912 whether the process has been running a long time,
913 or has used a lot of CPU time (\-);
914 .IP *
915 whether the process has a low nice value (i.e., > 0) (+);
916 .IP *
917 whether the process is privileged (\-); and
918 .\" More precisely, if it has CAP_SYS_ADMIN or CAP_SYS_RESOURCE
919 .IP *
920 whether the process is making direct hardware access (\-).
921 .\" More precisely, if it has CAP_SYS_RAWIO
922 .RE
923 .IP
924 The
925 .I oom_score
926 also reflects the adjustment specified by the
927 .I oom_score_adj
928 or
929 .I oom_adj
930 setting for the process.
931 .TP
932 .IR /proc/[pid]/oom_score_adj " (since Linux 2.6.36)"
933 .\" Text taken from 3.7 Documentation/filesystems/proc.txt
934 This file can be used to adjust the badness heuristic used to select which
935 process gets killed in out-of-memory conditions.
936
937 The badness heuristic assigns a value to each candidate task ranging from 0
938 (never kill) to 1000 (always kill) to determine which process is targeted.
939 The units are roughly a proportion along that range of
940 allowed memory the process may allocate from,
941 based on an estimation of its current memory and swap use.
942 For example, if a task is using all allowed memory,
943 its badness score will be 1000.
944 If it is using half of its allowed memory, its score will be 500.
945
946 There is an additional factor included in the badness score: root
947 processes are given 3% extra memory over other tasks.
948
949 The amount of "allowed" memory depends on the context
950 in which the OOM-killer was called.
951 If it is due to the memory assigned to the allocating task's cpuset
952 being exhausted,
953 the allowed memory represents the set of mems assigned to that
954 cpuset (see
955 .BR cpuset (7)).
956 If it is due to a mempolicy's node(s) being exhausted,
957 the allowed memory represents the set of mempolicy nodes.
958 If it is due to a memory limit (or swap limit) being reached,
959 the allowed memory is that configured limit.
960 Finally, if it is due to the entire system being out of memory, the
961 allowed memory represents all allocatable resources.
962
963 The value of
964 .I oom_score_adj
965 is added to the badness score before it
966 is used to determine which task to kill.
967 Acceptable values range from \-1000
968 (OOM_SCORE_ADJ_MIN) to +1000 (OOM_SCORE_ADJ_MAX).
969 This allows user space to control the preference for OOM-killing,
970 ranging from always preferring a certain
971 task or completely disabling it from OOM-killing.
972 The lowest possible value, \-1000, is
973 equivalent to disabling OOM-killing entirely for that task,
974 since it will always report a badness score of 0.
975
976 Consequently, it is very simple for user space to define
977 the amount of memory to consider for each task.
978 Setting a
979 .I oom_score_adj
980 value of +500, for example,
981 is roughly equivalent to allowing the remainder of tasks sharing the
982 same system, cpuset, mempolicy, or memory controller resources
983 to use at least 50% more memory.
984 A value of \-500, on the other hand, would be roughly
985 equivalent to discounting 50% of the task's
986 allowed memory from being considered as scoring against the task.
987
988 For backward compatibility with previous kernels,
989 .I /proc/[pid]/oom_adj
990 can still be used to tune the badness score.
991 Its value is
992 scaled linearly with
993 .IR oom_score_adj .
994
995 Writing to
996 .IR /proc/[pid]/oom_score_adj
997 or
998 .IR /proc/[pid]/oom_adj
999 will change the other with its scaled value.
1000 .\" FIXME Describe /proc/[pid]/pagemap
1001 .\"       Added in 2.6.25
1002 .\"       CONFIG_PROC_PAGE_MONITOR
1003 .TP
1004 .I /proc/[pid]/root
1005 UNIX and Linux support the idea of a per-process root of the
1006 filesystem, set by the
1007 .BR chroot (2)
1008 system call.
1009 This file is a symbolic link that points to the process's
1010 root directory, and behaves in the same way as
1011 .IR exe ,
1012 and
1013 .IR fd/* .
1014
1015 .\" The following was still true as at kernel 2.6.13
1016 In a multithreaded process, the contents of this symbolic link
1017 are not available if the main thread has already terminated
1018 (typically by calling
1019 .BR pthread_exit (3)).
1020 .\" FIXME Describe /proc/[pid]/seccomp
1021 .\"       Added in 2.6.12
1022 .\" FIXME Describe /proc/[pid]/sessionid
1023 .\"       Added in 2.6.25; read-only; only readable by real UID
1024 .\"       CONFIG_AUDITSYSCALL
1025 .\" FIXME Describe /proc/[pid]/sched
1026 .\"       Added in 2.6.23
1027 .\"       CONFIG_SCHED_DEBUG, and additional fields if CONFIG_SCHEDSTATS
1028 .\"       Displays various scheduling parameters
1029 .\"       This file can be written, to reset stats
1030 .\" FIXME Describe /proc/[pid]/schedstats and
1031 .\"       /proc/[pid]/task/[tid]/schedstats
1032 .\"       Added in 2.6.9
1033 .\"       CONFIG_SCHEDSTATS
1034 .TP
1035 .IR /proc/[pid]/smaps " (since Linux 2.6.14)"
1036 This file shows memory consumption for each of the process's mappings.
1037 For each mapping there is a series of lines such as the following:
1038 .in +4n
1039 .nf
1040
1041 00400000-0048a000 r-xp 00000000 fd:03 960637       /bin/bash
1042 Size:                552 kB
1043 Rss:                 460 kB
1044 Pss:                 100 kB
1045 Shared_Clean:        452 kB
1046 Shared_Dirty:          0 kB
1047 Private_Clean:         8 kB
1048 Private_Dirty:         0 kB
1049 Referenced:          460 kB
1050 Anonymous:             0 kB
1051 AnonHugePages:         0 kB
1052 Swap:                  0 kB
1053 KernelPageSize:        4 kB
1054 MMUPageSize:           4 kB
1055 Locked:                0 kB
1056
1057 .fi
1058 .in
1059 The first of these lines shows the same information as is displayed
1060 for the mapping in
1061 .IR /proc/[pid]/maps .
1062 The remaining lines show the size of the mapping,
1063 the amount of the mapping that is currently resident in RAM ("Rss"),
1064 the process' proportional share of this mapping ("Pss"),
1065 the number of clean and dirty shared pages in the mapping,
1066 and the number of clean and dirty private pages in the mapping.
1067 "Referenced" indicates the amount of memory currently marked as
1068 referenced or accessed.
1069 "Anonymous" shows the amount of memory
1070 that does not belong to any file.
1071 "Swap" shows how much
1072 would-be-anonymous memory is also used, but out on swap.
1073
1074 The "KernelPageSize" entry  is the page size used by the kernel to back a VMA.
1075 This matches the size used by the MMU in the majority of cases.
1076 However, one counter-example occurs on PPC64 kernels
1077 whereby a kernel using 64K as a base page size may still use 4K
1078 pages for the MMU on older processors.
1079 To distinguish, this
1080 patch reports "MMUPageSize" as the page size used by the MMU.
1081
1082 The "Locked" indicates whether the mapping is locked in memory
1083 or not.
1084
1085 "VmFlags" field represents the kernel flags associated with
1086 the particular virtual memory area in two letter encoded manner.
1087 The codes are the following:
1088
1089     rd  - readable
1090     wr  - writable
1091     ex  - executable
1092     sh  - shared
1093     mr  - may read
1094     mw  - may write
1095     me  - may execute
1096     ms  - may share
1097     gd  - stack segment growns down
1098     pf  - pure PFN range
1099     dw  - disabled write to the mapped file
1100     lo  - pages are locked in memory
1101     io  - memory mapped I/O area
1102     sr  - sequential read advise provided
1103     rr  - random read advise provided
1104     dc  - do not copy area on fork
1105     de  - do not expand area on remapping
1106     ac  - area is accountable
1107     nr  - swap space is not reserved for the area
1108     ht  - area uses huge tlb pages
1109     nl  - non-linear mapping
1110     ar  - architecture specific flag
1111     dd  - do not include area into core dump
1112     sd  - soft-dirty flag
1113     mm  - mixed map area
1114     hg  - huge page advise flag
1115     nh  - no-huge page advise flag
1116     mg  - mergable advise flag
1117
1118 The
1119 .IR /proc/[pid]/smaps
1120 file is present only if the
1121 .B CONFIG_PROC_PAGE_MONITOR
1122 kernel configuration option is enabled.
1123 .TP
1124 .IR /proc/[pid]/stack " (since Linux 2.6.29)"
1125 .\" 2ec220e27f5040aec1e88901c1b6ea3d135787ad
1126 This file provides a symbolic trace of the function calls in this
1127 process's kernel stack.
1128 This file is provided only if the kernel was built with the
1129 .B CONFIG_STACKTRACE
1130 configuration option.
1131 .TP
1132 .I /proc/[pid]/stat
1133 Status information about the process.
1134 This is used by
1135 .BR ps (1).
1136 It is defined in
1137 .IR /usr/src/linux/fs/proc/array.c "."
1138
1139 The fields, in order, with their proper
1140 .BR scanf (3)
1141 format specifiers, are:
1142 .RS
1143 .TP 12
1144 \fIpid\fP %d
1145 (1) The process ID.
1146 .TP
1147 \fIcomm\fP %s
1148 (2) The filename of the executable, in parentheses.
1149 This is visible whether or not the executable is swapped out.
1150 .TP
1151 \fIstate\fP %c
1152 (3) One character from the string "RSDZTW" where R is running, S is
1153 sleeping in an interruptible wait, D is waiting in uninterruptible
1154 disk sleep, Z is zombie, T is traced or stopped (on a signal),
1155 and W is paging.
1156 .TP
1157 \fIppid\fP %d
1158 (4) The PID of the parent.
1159 .TP
1160 \fIpgrp\fP %d
1161 (5) The process group ID of the process.
1162 .TP
1163 \fIsession\fP %d
1164 (6) The session ID of the process.
1165 .TP
1166 \fItty_nr\fP %d
1167 (7) The controlling terminal of the process.
1168 (The minor device number is contained in the combination of bits
1169 31 to 20 and 7 to 0;
1170 the major device number is in bits 15 to 8.)
1171 .TP
1172 \fItpgid\fP %d
1173 .\" This field and following, up to and including wchan added 0.99.1
1174 (8) The ID of the foreground process group of the controlling
1175 terminal of the process.
1176 .TP
1177 \fIflags\fP %u (%lu before Linux 2.6.22)
1178 (9) The kernel flags word of the process.
1179 For bit meanings,
1180 see the PF_* defines in the Linux kernel source file
1181 .IR include/linux/sched.h .
1182 Details depend on the kernel version.
1183 .TP
1184 \fIminflt\fP %lu
1185 (10) The number of minor faults the process has made which have not
1186 required loading a memory page from disk.
1187 .TP
1188 \fIcminflt\fP %lu
1189 (11) The number of minor faults that the process's
1190 waited-for children have made.
1191 .TP
1192 \fImajflt\fP %lu
1193 (12) The number of major faults the process has made which have
1194 required loading a memory page from disk.
1195 .TP
1196 \fIcmajflt\fP %lu
1197 (13) The number of major faults that the process's
1198 waited-for children have made.
1199 .TP
1200 \fIutime\fP %lu
1201 (14) Amount of time that this process has been scheduled in user mode,
1202 measured in clock ticks (divide by
1203 .IR sysconf(_SC_CLK_TCK) ).
1204 This includes guest time, \fIguest_time\fP
1205 (time spent running a virtual CPU, see below),
1206 so that applications that are not aware of the guest time field
1207 do not lose that time from their calculations.
1208 .TP
1209 \fIstime\fP %lu
1210 (15) Amount of time that this process has been scheduled in kernel mode,
1211 measured in clock ticks (divide by
1212 .IR sysconf(_SC_CLK_TCK) ).
1213 .TP
1214 \fIcutime\fP %ld
1215 (16) Amount of time that this process's
1216 waited-for children have been scheduled in user mode,
1217 measured in clock ticks (divide by
1218 .IR sysconf(_SC_CLK_TCK) ).
1219 (See also
1220 .BR times (2).)
1221 This includes guest time, \fIcguest_time\fP
1222 (time spent running a virtual CPU, see below).
1223 .TP
1224 \fIcstime\fP %ld
1225 (17) Amount of time that this process's
1226 waited-for children have been scheduled in kernel mode,
1227 measured in clock ticks (divide by
1228 .IR sysconf(_SC_CLK_TCK) ).
1229 .TP
1230 \fIpriority\fP %ld
1231 (18) (Explanation for Linux 2.6)
1232 For processes running a real-time scheduling policy
1233 .RI ( policy
1234 below; see
1235 .BR sched_setscheduler (2)),
1236 this is the negated scheduling priority, minus one;
1237 that is, a number in the range \-2 to \-100,
1238 corresponding to real-time priorities 1 to 99.
1239 For processes running under a non-real-time scheduling policy,
1240 this is the raw nice value
1241 .RB ( setpriority (2))
1242 as represented in the kernel.
1243 The kernel stores nice values as numbers
1244 in the range 0 (high) to 39 (low),
1245 corresponding to the user-visible nice range of \-20 to 19.
1246
1247 Before Linux 2.6, this was a scaled value based on
1248 the scheduler weighting given to this process.
1249 .\" And back in kernel 1.2 days things were different again.
1250 .TP
1251 \fInice\fP %ld
1252 (19) The nice value (see
1253 .BR setpriority (2)),
1254 a value in the range 19 (low priority) to \-20 (high priority).
1255 .\" Back in kernel 1.2 days things were different.
1256 .\" .TP
1257 .\" \fIcounter\fP %ld
1258 .\" The current maximum size in jiffies of the process's next timeslice,
1259 .\" or what is currently left of its current timeslice, if it is the
1260 .\" currently running process.
1261 .\" .TP
1262 .\" \fItimeout\fP %u
1263 .\" The time in jiffies of the process's next timeout.
1264 .\" timeout was removed sometime around 2.1/2.2
1265 .TP
1266 \fInum_threads\fP %ld
1267 (20) Number of threads in this process (since Linux 2.6).
1268 Before kernel 2.6, this field was hard coded to 0 as a placeholder
1269 for an earlier removed field.
1270 .TP
1271 \fIitrealvalue\fP %ld
1272 (21) The time in jiffies before the next
1273 .B SIGALRM
1274 is sent to the process due to an interval timer.
1275 Since kernel 2.6.17, this field is no longer maintained,
1276 and is hard coded as 0.
1277 .TP
1278 \fIstarttime\fP %llu (was %lu before Linux 2.6)
1279 (22) The time the process started after system boot.
1280 In kernels before Linux 2.6, this value was expressed in jiffies.
1281 Since Linux 2.6, the value is expressed in clock ticks (divide by
1282 .IR sysconf(_SC_CLK_TCK) ).
1283 .TP
1284 \fIvsize\fP %lu
1285 (23) Virtual memory size in bytes.
1286 .TP
1287 \fIrss\fP %ld
1288 (24) Resident Set Size: number of pages the process has in real memory.
1289 This is just the pages which
1290 count toward text, data, or stack space.
1291 This does not include pages
1292 which have not been demand-loaded in, or which are swapped out.
1293 .TP
1294 \fIrsslim\fP %lu
1295 (25) Current soft limit in bytes on the rss of the process;
1296 see the description of
1297 .B RLIMIT_RSS
1298 in
1299 .BR getrlimit (2).
1300 .TP
1301 \fIstartcode\fP %lu
1302 (26) The address above which program text can run.
1303 .TP
1304 \fIendcode\fP %lu
1305 (27) The address below which program text can run.
1306 .TP
1307 \fIstartstack\fP %lu
1308 (28) The address of the start (i.e., bottom) of the stack.
1309 .TP
1310 \fIkstkesp\fP %lu
1311 (29) The current value of ESP (stack pointer), as found in the
1312 kernel stack page for the process.
1313 .TP
1314 \fIkstkeip\fP %lu
1315 (30) The current EIP (instruction pointer).
1316 .TP
1317 \fIsignal\fP %lu
1318 (31) The bitmap of pending signals, displayed as a decimal number.
1319 Obsolete, because it does not provide information on real-time signals; use
1320 .I /proc/[pid]/status
1321 instead.
1322 .TP
1323 \fIblocked\fP %lu
1324 (32) The bitmap of blocked signals, displayed as a decimal number.
1325 Obsolete, because it does not provide information on real-time signals; use
1326 .I /proc/[pid]/status
1327 instead.
1328 .TP
1329 \fIsigignore\fP %lu
1330 (33) The bitmap of ignored signals, displayed as a decimal number.
1331 Obsolete, because it does not provide information on real-time signals; use
1332 .I /proc/[pid]/status
1333 instead.
1334 .TP
1335 \fIsigcatch\fP %lu
1336 (34) The bitmap of caught signals, displayed as a decimal number.
1337 Obsolete, because it does not provide information on real-time signals; use
1338 .I /proc/[pid]/status
1339 instead.
1340 .TP
1341 \fIwchan\fP %lu
1342 (35) This is the "channel" in which the process is waiting.
1343 It is the address of a location in the kernel where the process is sleeping.
1344 The corresponding symbolic name can be found in
1345 .IR /proc/[pid]/wchan .
1346 .TP
1347 \fInswap\fP %lu
1348 (36)
1349 .\" nswap was added in 2.0
1350 Number of pages swapped (not maintained).
1351 .TP
1352 \fIcnswap\fP %lu
1353 (37)
1354 .\" cnswap was added in 2.0
1355 Cumulative \fInswap\fP for child processes (not maintained).
1356 .TP
1357 \fIexit_signal\fP %d (since Linux 2.1.22)
1358 (38) Signal to be sent to parent when we die.
1359 .TP
1360 \fIprocessor\fP %d (since Linux 2.2.8)
1361 (39) CPU number last executed on.
1362 .TP
1363 \fIrt_priority\fP %u (since Linux 2.5.19; was %lu before Linux 2.6.22)
1364 (40) Real-time scheduling priority, a number in the range 1 to 99 for
1365 processes scheduled under a real-time policy,
1366 or 0, for non-real-time processes (see
1367 .BR sched_setscheduler (2)).
1368 .TP
1369 \fIpolicy\fP %u (since Linux 2.5.19; was %lu before Linux 2.6.22)
1370 (41) Scheduling policy (see
1371 .BR sched_setscheduler (2)).
1372 Decode using the SCHED_* constants in
1373 .IR linux/sched.h .
1374 .TP
1375 \fIdelayacct_blkio_ticks\fP %llu (since Linux 2.6.18)
1376 (42) Aggregated block I/O delays, measured in clock ticks (centiseconds).
1377 .TP
1378 \fIguest_time\fP %lu (since Linux 2.6.24)
1379 (43) Guest time of the process (time spent running a virtual CPU
1380 for a guest operating system), measured in clock ticks (divide by
1381 .IR sysconf(_SC_CLK_TCK) ).
1382 .TP
1383 \fIcguest_time\fP %ld (since Linux 2.6.24)
1384 (44) Guest time of the process's children, measured in clock ticks (divide by
1385 .IR sysconf(_SC_CLK_TCK) ).
1386 .RE
1387 .TP
1388 .I /proc/[pid]/statm
1389 Provides information about memory usage, measured in pages.
1390 The columns are:
1391 .in +4n
1392 .nf
1393
1394 size       (1) total program size
1395            (same as VmSize in \fI/proc/[pid]/status\fP)
1396 resident   (2) resident set size
1397            (same as VmRSS in \fI/proc/[pid]/status\fP)
1398 share      (3) shared pages (i.e., backed by a file)
1399 text       (4) text (code)
1400 .\" (not including libs; broken, includes data segment)
1401 lib        (5) library (unused in Linux 2.6)
1402 data       (6) data + stack
1403 .\" (including libs; broken, includes library text)
1404 dt         (7) dirty pages (unused in Linux 2.6)
1405 .fi
1406 .in
1407 .TP
1408 .I /proc/[pid]/status
1409 Provides much of the information in
1410 .I /proc/[pid]/stat
1411 and
1412 .I /proc/[pid]/statm
1413 in a format that's easier for humans to parse.
1414 Here's an example:
1415 .in +4n
1416 .nf
1417
1418 .RB "$" " cat /proc/$$/status"
1419 Name:   bash
1420 State:  S (sleeping)
1421 Tgid:   3515
1422 Pid:    3515
1423 PPid:   3452
1424 TracerPid:      0
1425 Uid:    1000    1000    1000    1000
1426 Gid:    100     100     100     100
1427 FDSize: 256
1428 Groups: 16 33 100
1429 VmPeak:     9136 kB
1430 VmSize:     7896 kB
1431 VmLck:         0 kB
1432 VmHWM:      7572 kB
1433 VmRSS:      6316 kB
1434 VmData:     5224 kB
1435 VmStk:        88 kB
1436 VmExe:       572 kB
1437 VmLib:      1708 kB
1438 VmPTE:        20 kB
1439 Threads:        1
1440 SigQ:   0/3067
1441 SigPnd: 0000000000000000
1442 ShdPnd: 0000000000000000
1443 SigBlk: 0000000000010000
1444 SigIgn: 0000000000384004
1445 SigCgt: 000000004b813efb
1446 CapInh: 0000000000000000
1447 CapPrm: 0000000000000000
1448 CapEff: 0000000000000000
1449 CapBnd: ffffffffffffffff
1450 Cpus_allowed:   00000001
1451 Cpus_allowed_list:      0
1452 Mems_allowed:   1
1453 Mems_allowed_list:      0
1454 voluntary_ctxt_switches:        150
1455 nonvoluntary_ctxt_switches:     545
1456 .fi
1457 .in
1458 .IP
1459 The fields are as follows:
1460 .RS
1461 .IP * 2
1462 .IR Name :
1463 Command run by this process.
1464 .IP *
1465 .IR State :
1466 Current state of the process.
1467 One of
1468 "R (running)",
1469 "S (sleeping)",
1470 "D (disk sleep)",
1471 "T (stopped)",
1472 "T (tracing stop)",
1473 "Z (zombie)",
1474 or
1475 "X (dead)".
1476 .IP *
1477 .IR Tgid :
1478 Thread group ID (i.e., Process ID).
1479 .IP *
1480 .IR Pid :
1481 Thread ID (see
1482 .BR gettid (2)).
1483 .IP *
1484 .IR PPid :
1485 PID of parent process.
1486 .IP *
1487 .IR TracerPid :
1488 PID of process tracing this process (0 if not being traced).
1489 .IP *
1490 .IR Uid ", " Gid :
1491 Real, effective, saved set, and filesystem UIDs (GIDs).
1492 .IP *
1493 .IR FDSize :
1494 Number of file descriptor slots currently allocated.
1495 .IP *
1496 .IR Groups :
1497 Supplementary group list.
1498 .IP *
1499 .IR VmPeak :
1500 Peak virtual memory size.
1501 .IP *
1502 .IR VmSize :
1503 Virtual memory size.
1504 .IP *
1505 .IR VmLck :
1506 Locked memory size (see
1507 .BR mlock (3)).
1508 .IP *
1509 .IR VmHWM :
1510 Peak resident set size ("high water mark").
1511 .IP *
1512 .IR VmRSS :
1513 Resident set size.
1514 .IP *
1515 .IR VmData ", " VmStk ", " VmExe :
1516 Size of data, stack, and text segments.
1517 .IP *
1518 .IR VmLib :
1519 Shared library code size.
1520 .IP *
1521 .IR VmPTE :
1522 Page table entries size (since Linux 2.6.10).
1523 .IP *
1524 .IR Threads :
1525 Number of threads in process containing this thread.
1526 .IP *
1527 .IR SigQ :
1528 This field contains two slash-separated numbers that relate to
1529 queued signals for the real user ID of this process.
1530 The first of these is the number of currently queued
1531 signals for this real user ID, and the second is the
1532 resource limit on the number of queued signals for this process
1533 (see the description of
1534 .BR RLIMIT_SIGPENDING
1535 in
1536 .BR getrlimit (2)).
1537 .IP *
1538 .IR SigPnd ", " ShdPnd :
1539 Number of signals pending for thread and for process as a whole (see
1540 .BR pthreads (7)
1541 and
1542 .BR signal (7)).
1543 .IP *
1544 .IR SigBlk ", " SigIgn ", " SigCgt :
1545 Masks indicating signals being blocked, ignored, and caught (see
1546 .BR signal (7)).
1547 .IP *
1548 .IR CapInh ", " CapPrm ", " CapEff :
1549 Masks of capabilities enabled in inheritable, permitted, and effective sets
1550 (see
1551 .BR capabilities (7)).
1552 .IP *
1553 .IR CapBnd :
1554 Capability Bounding set
1555 (since kernel 2.6.26, see
1556 .BR capabilities (7)).
1557 .IP *
1558 .IR Cpus_allowed :
1559 Mask of CPUs on which this process may run
1560 (since Linux 2.6.24, see
1561 .BR cpuset (7)).
1562 .IP *
1563 .IR Cpus_allowed_list :
1564 Same as previous, but in "list format"
1565 (since Linux 2.6.26, see
1566 .BR cpuset (7)).
1567 .IP *
1568 .IR Mems_allowed :
1569 Mask of memory nodes allowed to this process
1570 (since Linux 2.6.24, see
1571 .BR cpuset (7)).
1572 .IP *
1573 .IR Mems_allowed_list :
1574 Same as previous, but in "list format"
1575 (since Linux 2.6.26, see
1576 .BR cpuset (7)).
1577 .IP *
1578 .IR voluntary_context_switches ", " nonvoluntary_context_switches :
1579 Number of voluntary and involuntary context switches (since Linux 2.6.23).
1580 .RE
1581 .TP
1582 .IR /proc/[pid]/task " (since Linux 2.6.0-test6)"
1583 This is a directory that contains one subdirectory
1584 for each thread in the process.
1585 The name of each subdirectory is the numerical thread ID
1586 .RI ( [tid] )
1587 of the thread (see
1588 .BR gettid (2)).
1589 Within each of these subdirectories, there is a set of
1590 files with the same names and contents as under the
1591 .I /proc/[pid]
1592 directories.
1593 For attributes that are shared by all threads, the contents for
1594 each of the files under the
1595 .I task/[tid]
1596 subdirectories will be the same as in the corresponding
1597 file in the parent
1598 .I /proc/[pid]
1599 directory
1600 (e.g., in a multithreaded process, all of the
1601 .I task/[tid]/cwd
1602 files will have the same value as the
1603 .I /proc/[pid]/cwd
1604 file in the parent directory, since all of the threads in a process
1605 share a working directory).
1606 For attributes that are distinct for each thread,
1607 the corresponding files under
1608 .I task/[tid]
1609 may have different values (e.g., various fields in each of the
1610 .I task/[tid]/status
1611 files may be different for each thread).
1612
1613 .\" The following was still true as at kernel 2.6.13
1614 In a multithreaded process, the contents of the
1615 .I /proc/[pid]/task
1616 directory are not available if the main thread has already terminated
1617 (typically by calling
1618 .BR pthread_exit (3)).
1619 .TP
1620 .IR /proc/[pid]/wchan " (since Linux 2.6.0)"
1621 The symbolic name corresponding to the location
1622 in the kernel where the process is sleeping.
1623 .TP
1624 .I /proc/apm
1625 Advanced power management version and battery information when
1626 .B CONFIG_APM
1627 is defined at kernel compilation time.
1628 .TP
1629 .I /proc/bus
1630 Contains subdirectories for installed busses.
1631 .TP
1632 .I /proc/bus/pccard
1633 Subdirectory for PCMCIA devices when
1634 .B CONFIG_PCMCIA
1635 is set at kernel compilation time.
1636 .TP
1637 .IR /proc/[pid]/timers " (since Linux 3.10)"
1638 .\" commit 5ed67f05f66c41e39880a6d61358438a25f9fee5
1639 .\" commit 48f6a7a511ef8823fdff39afee0320092d43a8a0
1640 A list of the POSIX timers for this process.
1641 Each timer is listed with a line that started with the string "ID:".
1642 For example:
1643
1644 .in +4n
1645 .nf
1646 ID: 1
1647 signal: 60/00007fff86e452a8
1648 notify: signal/pid.2634
1649 ClockID: 0
1650 ID: 0
1651 signal: 60/00007fff86e452a8
1652 notify: signal/pid.2634
1653 ClockID: 1
1654 .fi
1655 .in
1656
1657 The lines shown for each timer have the following meanings:
1658 .RS
1659 .TP
1660 .I ID
1661 The ID for this timer.
1662 This is not the same as the timer ID returned by
1663 .BR timer_create (2);
1664 rather, it is the same kernel-internal ID that is available via the
1665 .I si_timerid
1666 field of the
1667 .IR siginfo_t
1668 structure (see
1669 .BR sigaction (2)).
1670 .TP
1671 .I signal
1672 This is the signal number that this timer uses to deliver notifications
1673 followed by a slash, and then the
1674 .I sigev_value.sival_ptr
1675 value supplied to the signal handler.
1676 Valid only for timers that notify via a signal.
1677 .TP
1678 .I notify
1679 The part before the slash specifies the mechanism
1680 that this timer uses to deliver notifications,
1681 and is one of "thread", "signal", or "none".
1682 Immediately following the slash is either the string "tid" for timers
1683 with
1684 .B SIGEV_THREAD_ID
1685 notification, or "pid" for timers that notify by other mechanisms.
1686 Following the "." is the PID of the process that will be delivered
1687 a signal if the timer delivers notifications via a signal.
1688 .TP
1689 .I ClockID
1690 This field identifies the clock that the timer uses for measuring time.
1691 For most clocks, this is a number that matches one of the user-space
1692 .BR CLOCK_*
1693 constants exposed via
1694 .IR <time.h> .
1695 .B CLOCK_PROCESS_CPUTIME_ID
1696 timers display with a value of -6
1697 in this field.
1698 .B CLOCK_THREAD_CPUTIME_ID
1699 timers display with a value of -2
1700 in this field.
1701 .RE
1702 .TP
1703 .I /proc/bus/pccard/drivers
1704 .TP
1705 .I /proc/bus/pci
1706 Contains various bus subdirectories and pseudo-files containing
1707 information about PCI busses, installed devices, and device
1708 drivers.
1709 Some of these files are not ASCII.
1710 .TP
1711 .I /proc/bus/pci/devices
1712 Information about PCI devices.
1713 They may be accessed through
1714 .BR lspci (8)
1715 and
1716 .BR setpci (8).
1717 .TP
1718 .I /proc/cmdline
1719 Arguments passed to the Linux kernel at boot time.
1720 Often done via a boot manager such as
1721 .BR lilo (8)
1722 or
1723 .BR grub (8).
1724 .TP
1725 .IR /proc/config.gz " (since Linux 2.6)"
1726 This file exposes the configuration options that were used
1727 to build the currently running kernel,
1728 in the same format as they would be shown in the
1729 .I .config
1730 file that resulted when configuring the kernel (using
1731 .IR "make xconfig" ,
1732 .IR "make config" ,
1733 or similar).
1734 The file contents are compressed; view or search them using
1735 .BR zcat (1)
1736 and
1737 .BR zgrep (1).
1738 As long as no changes have been made to the following file,
1739 the contents of
1740 .I /proc/config.gz
1741 are the same as those provided by :
1742 .in +4n
1743 .nf
1744
1745 cat /lib/modules/$(uname \-r)/build/.config
1746 .fi
1747 .in
1748 .IP
1749 .I /proc/config.gz
1750 is provided only if the kernel is configured with
1751 .BR CONFIG_IKCONFIG_PROC .
1752 .TP
1753 .I /proc/cpuinfo
1754 This is a collection of CPU and system architecture dependent items,
1755 for each supported architecture a different list.
1756 Two common entries are \fIprocessor\fP which gives CPU number and
1757 \fIbogomips\fP; a system constant that is calculated
1758 during kernel initialization.
1759 SMP machines have information for
1760 each CPU.
1761 The
1762 .BR lscpu (1)
1763 command gathers its information from this file.
1764 .TP
1765 .I /proc/devices
1766 Text listing of major numbers and device groups.
1767 This can be used by MAKEDEV scripts for consistency with the kernel.
1768 .TP
1769 .IR /proc/diskstats " (since Linux 2.5.69)"
1770 This file contains disk I/O statistics for each disk device.
1771 See the Linux kernel source file
1772 .I Documentation/iostats.txt
1773 for further information.
1774 .TP
1775 .I /proc/dma
1776 This is a list of the registered \fIISA\fP DMA (direct memory access)
1777 channels in use.
1778 .TP
1779 .I /proc/driver
1780 Empty subdirectory.
1781 .TP
1782 .I /proc/execdomains
1783 List of the execution domains (ABI personalities).
1784 .TP
1785 .I /proc/fb
1786 Frame buffer information when
1787 .B CONFIG_FB
1788 is defined during kernel compilation.
1789 .TP
1790 .I /proc/filesystems
1791 A text listing of the filesystems which are supported by the kernel,
1792 namely filesystems which were compiled into the kernel or whose kernel
1793 modules are currently loaded.
1794 (See also
1795 .BR filesystems (5).)
1796 If a filesystem is marked with "nodev",
1797 this means that it does not require a block device to be mounted
1798 (e.g., virtual filesystem, network filesystem).
1799
1800 Incidentally, this file may be used by
1801 .BR mount (8)
1802 when no filesystem is specified and it didn't manage to determine the
1803 filesystem type.
1804 Then filesystems contained in this file are tried
1805 (excepted those that are marked with "nodev").
1806 .TP
1807 .I /proc/fs
1808 Empty subdirectory.
1809 .TP
1810 .I /proc/ide
1811 This directory
1812 exists on systems with the IDE bus.
1813 There are directories for each IDE channel and attached device.
1814 Files include:
1815
1816 .in +4n
1817 .nf
1818 cache              buffer size in KB
1819 capacity           number of sectors
1820 driver             driver version
1821 geometry           physical and logical geometry
1822 identify           in hexadecimal
1823 media              media type
1824 model              manufacturer's model number
1825 settings           drive settings
1826 smart_thresholds   in hexadecimal
1827 smart_values       in hexadecimal
1828 .fi
1829 .in
1830
1831 The
1832 .BR hdparm (8)
1833 utility provides access to this information in a friendly format.
1834 .TP
1835 .I /proc/interrupts
1836 This is used to record the number of interrupts per CPU per IO device.
1837 Since Linux 2.6.24,
1838 for the i386 and x86_64 architectures, at least, this also includes
1839 interrupts internal to the system (that is, not associated with a device
1840 as such), such as NMI (nonmaskable interrupt), LOC (local timer interrupt),
1841 and for SMP systems, TLB (TLB flush interrupt), RES (rescheduling
1842 interrupt), CAL (remote function call interrupt), and possibly others.
1843 Very easy to read formatting, done in ASCII.
1844 .TP
1845 .I /proc/iomem
1846 I/O memory map in Linux 2.4.
1847 .TP
1848 .I /proc/ioports
1849 This is a list of currently registered Input-Output port regions that
1850 are in use.
1851 .TP
1852 .IR /proc/kallsyms " (since Linux 2.5.71)"
1853 This holds the kernel exported symbol definitions used by the
1854 .BR modules (X)
1855 tools to dynamically link and bind loadable modules.
1856 In Linux 2.5.47 and earlier, a similar file with slightly different syntax
1857 was named
1858 .IR ksyms .
1859 .TP
1860 .I /proc/kcore
1861 This file represents the physical memory of the system and is stored
1862 in the ELF core file format.
1863 With this pseudo-file, and an unstripped
1864 kernel
1865 .RI ( /usr/src/linux/vmlinux )
1866 binary, GDB can be used to
1867 examine the current state of any kernel data structures.
1868
1869 The total length of the file is the size of physical memory (RAM) plus
1870 4KB.
1871 .TP
1872 .I /proc/kmsg
1873 This file can be used instead of the
1874 .BR syslog (2)
1875 system call to read kernel messages.
1876 A process must have superuser
1877 privileges to read this file, and only one process should read this
1878 file.
1879 This file should not be read if a syslog process is running
1880 which uses the
1881 .BR syslog (2)
1882 system call facility to log kernel messages.
1883
1884 Information in this file is retrieved with the
1885 .BR dmesg (1)
1886 program.
1887 .TP
1888 .IR /proc/ksyms " (Linux 1.1.23-2.5.47)"
1889 See
1890 .IR /proc/kallsyms .
1891 .TP
1892 .I /proc/loadavg
1893 The first three fields in this file are load average figures
1894 giving the number of jobs in the run queue (state R)
1895 or waiting for disk I/O (state D) averaged over 1, 5, and 15 minutes.
1896 They are the same as the load average numbers given by
1897 .BR uptime (1)
1898 and other programs.
1899 The fourth field consists of two numbers separated by a slash (/).
1900 The first of these is the number of currently runnable kernel
1901 scheduling entities (processes, threads).
1902 The value after the slash is the number of kernel scheduling entities
1903 that currently exist on the system.
1904 The fifth field is the PID of the process that was most
1905 recently created on the system.
1906 .TP
1907 .I /proc/locks
1908 This file shows current file locks
1909 .RB ( flock "(2) and " fcntl (2))
1910 and leases
1911 .RB ( fcntl (2)).
1912 .TP
1913 .IR /proc/malloc " (only up to and including Linux 2.2)"
1914 .\" It looks like this only ever did something back in 1.0 days
1915 This file is present only if
1916 .B CONFIG_DEBUG_MALLOC
1917 was defined during compilation.
1918 .TP
1919 .I /proc/meminfo
1920 This file reports statistics about memory usage on the system.
1921 It is used by
1922 .BR free (1)
1923 to report the amount of free and used memory (both physical and swap)
1924 on the system as well as the shared memory and buffers used by the
1925 kernel.
1926 Each line of the file consists of a parameter name, followed by a colon,
1927 the value of the parameter, and an option unit of measurement (e.g., "kB").
1928 The list below describes the parameter names and
1929 the format specifier required to read the field value.
1930 Except as noted below,
1931 all of the fields have been present since at least Linux 2.6.0.
1932 Some fileds are displayed only if the kernel was configured
1933 with various options; those dependencies are noted in the list.
1934 .RS
1935 .TP
1936 .IR MemTotal " %lu"
1937 Total usable RAM (i.e., physical RAM minus a few reserved
1938 bits and the kernel binary code).
1939 .TP
1940 .IR MemFree " %lu"
1941 The sum of
1942 .IR LowFree + HighFree .
1943 .TP
1944 .IR Buffers " %lu"
1945 Relatively temporary storage for raw disk blocks that
1946 shouldn't get tremendously large (20MB or so).
1947 .TP
1948 .IR Cached " %lu"
1949 In-memory cache for files read from the disk (the page cache).
1950 Doesn't include
1951 .IR SwapCached .
1952 .TP
1953 .IR SwapCached " %lu"
1954 Memory that once was swapped out, is swapped back in but
1955 still also is in the swap file.
1956 (If memory pressure is high, these pages
1957 don't need to be swapped out again because they are already
1958 in the swap file.
1959 This saves I/O.)
1960 .TP
1961 .IR Active " %lu"
1962 Memory that has been used more recently and usually not
1963 reclaimed unless absolutely necessary.
1964 .TP
1965 .IR Inactive " %lu"
1966 Memory which has been less recently used.
1967 It is more eligible to be reclaimed for other purposes.
1968 .TP
1969 .IR Active(anon) " %lu (since Linux 2.6.28)"
1970 [To be documented.]
1971 .TP
1972 .IR Inactive(anon) " %lu (since Linux 2.6.28)"
1973 [To be documented.]
1974 .TP
1975 .IR Active(file) " %lu (since Linux 2.6.28)"
1976 [To be documented.]
1977 .TP
1978 .IR Inactive(file) " %lu (since Linux 2.6.28)"
1979 [To be documented.]
1980 .TP
1981 .IR Unevictable " %lu (since Linux 2.6.28)"
1982 (From Linux 2.6.28 to 2.6.30,
1983 \fBCONFIG_UNEVICTABLE_LRU\fP was required.)
1984 [To be documented.]
1985 .TP
1986 .IR Mlocked " %lu (since Linux 2.6.28)"
1987 (From Linux 2.6.28 to 2.6.30,
1988 \fBCONFIG_UNEVICTABLE_LRU\fP was required.)
1989 [To be documented.]
1990 .TP
1991 .IR HighTotal " %lu"
1992 (Starting with Linux 2.6.19, \fBCONFIG_HIGHMEM\fP is required.)
1993 Total amount of highmem.
1994 Highmem is all memory above ~860MB of physical memory.
1995 Highmem areas are for use by user-space programs,
1996 or for the page cache.
1997 The kernel must use tricks to access
1998 this memory, making it slower to access than lowmem.
1999 .TP
2000 .IR HighFree " %lu
2001 (Starting with Linux 2.6.19, \fBCONFIG_HIGHMEM\fP is required.)
2002 Amount of free highmem.
2003 .TP
2004 .IR LowTotal " %lu
2005 (Starting with Linux 2.6.19, \fBCONFIG_HIGHMEM\fP is required.)
2006 Total amount of lowmem.
2007 Lowmem is memory which can be used for everything that
2008 highmem can be used for, but it is also available for the
2009 kernel's use for its own data structures.
2010 Among many other things,
2011 it is where everything from
2012 .I Slab
2013 is allocated.
2014 Bad things happen when you're out of lowmem.
2015 .TP
2016 .IR LowFree " %lu
2017 (Starting with Linux 2.6.19, \fBCONFIG_HIGHMEM\fP is required.)
2018 Amount of free lowmem.
2019 .TP
2020 .IR MmapCopy " %lu (since Linux 2.6.29)"
2021 .RB ( CONFIG_MMU
2022 is required.)
2023 [To be documented.]
2024 .TP
2025 .IR SwapTotal " %lu"
2026 Total amount of swap space available.
2027 .TP
2028 .IR SwapFree " %lu"
2029 Amount of swap space that is currently unused.
2030 .TP
2031 .IR Dirty " %lu"
2032 Memory which is waiting to get written back to the disk.
2033 .TP
2034 .IR Writeback " %lu"
2035 Memory which is actively being written back to the disk.
2036 .TP
2037 .IR AnonPages " %lu (since Linux 2.6.18)"
2038 Non-file backed pages mapped into user-space page tables.
2039 .TP
2040 .IR Mapped " %lu"
2041 Files which have been mmaped, such as libraries.
2042 .TP
2043 .IR Shmem " %lu (since Linux 2.6.32)"
2044 [To be documented.]
2045 .TP
2046 .IR Slab " %lu"
2047 In-kernel data structures cache.
2048 .TP
2049 .IR SReclaimable " %lu (since Linux 2.6.19)"
2050 Part of
2051 .IR Slab ,
2052 that might be reclaimed, such as caches.
2053 .TP
2054 .IR SUnreclaim " %lu (since Linux 2.6.19)"
2055 Part of
2056 .IR Slab ,
2057 that cannot be reclaimed on memory pressure.
2058 .TP
2059 .IR KernelStack " %lu (since Linux 2.6.32)"
2060 Amount of memory allocated to kernel stacks.
2061 .TP
2062 .IR PageTables " %lu (since Linux 2.6.18)"
2063 Amount of memory dedicated to the lowest level of page tables.
2064 .TP
2065 .IR Quicklists " %lu (since Linux 2.6.27)"
2066 (\fBCONFIG_QUICKLIST\fP is required.)
2067 [To be documented.]
2068 .TP
2069 .IR NFS_Unstable " %lu (since Linux 2.6.18)"
2070 NFS pages sent to the server, but not yet committed to stable storage.
2071 .TP
2072 .IR Bounce " %lu (since Linux 2.6.18)"
2073 Memory used for block device "bounce buffers".
2074 .TP
2075 .IR WritebackTmp " %lu (since Linux 2.6.26)"
2076 Memory used by FUSE for temporary writeback buffers.
2077 .TP
2078 .IR CommitLimit " %lu (since Linux 2.6.10)"
2079 Based on the overcommit ratio ('vm.overcommit_ratio'),
2080 this is the total amount of  memory currently available to
2081 be allocated on the system.
2082 This limit is adhered to
2083 only if strict overcommit accounting is enabled (mode 2 in
2084 .IR /proc/sys/vm/overcommit_ratio ).
2085 The
2086 .I CommitLimit
2087 is calculated using the following formula:
2088
2089     CommitLimit =
2090         ([total RAM pages] - [total huge TLB pages]) *
2091         overcommit_ratio / 100 + [total swap pages]
2092
2093 For example, on a system with 1GB of physical RAM and 7GB
2094 of swap with a
2095 .I overcommit_ratio
2096 of 30, this formula yields a
2097 .I CommitLimit
2098 of 7.3GB.
2099 For more details, see the memory overcommit documentation
2100 in the kernel source file
2101 .IR Documentation/vm/overcommit-accounting .
2102 .TP
2103 .IR Committed_AS " %lu"
2104 The amount of memory presently allocated on the system.
2105 The committed memory is a sum of all of the memory which
2106 has been allocated by processes, even if it has not been
2107 "used" by them as of yet.
2108 A process which allocates 1GB of memory (using
2109 .BR malloc (3)
2110 or similar), but touches only 300MB of that memory will show up
2111 as using only 300MB of memory even if it has the address space
2112 allocated for the entire 1GB.
2113 This 1GB is memory which has been "committed" to by the VM
2114 and can be used at any time by the allocating application.
2115 With strict overcommit enabled on the system (mode 2
2116 .IR /proc/sys/vm/overcommit_memory ),
2117 allocations which would exceed the
2118 .I CommitLimit
2119 (detailed above) will not be permitted.
2120 This is useful if one needs to guarantee that processes will not
2121 fail due to lack of memory once that memory has been successfully allocated.
2122 .TP
2123 .IR VmallocTotal " %lu"
2124 Total size of vmalloc memory area.
2125 .TP
2126 .IR VmallocUsed " %lu"
2127 Amount of vmalloc area which is used.
2128 .TP
2129 .IR VmallocChunk " %lu"
2130 Largest contiguous block of vmalloc area which is free.
2131 .TP
2132 .IR HardwareCorrupted " %lu (since Linux 2.6.32)"
2133 (\fBCONFIG_MEMORY_FAILURE\fP is required.)
2134 [To be documented.]
2135 .TP
2136 .IR AnonHugePages " %lu (since Linux 2.6.38)"
2137 (\fBCONFIG_TRANSPARENT_HUGEPAGE\fP is required.)
2138 Non-file backed huge pages mapped into user-space page tables.
2139 .TP
2140 .IR HugePages_Total " %lu"
2141 (\fBCONFIG_HUGETLB_PAGE\fP is required.)
2142 The size of the pool of huge pages.
2143 .TP
2144 .IR HugePages_Free " %lu"
2145 (\fBCONFIG_HUGETLB_PAGE\fP is required.)
2146 The number of huge pages in the pool that are not yet allocated.
2147 .TP
2148 .IR HugePages_Rsvd " %lu (since Linux 2.6.17)"
2149 (\fBCONFIG_HUGETLB_PAGE\fP is required.)
2150 This is the number of huge pages for
2151 which a commitment to allocate from the pool has been made,
2152 but no allocation has yet been made.
2153 These reserved huge pages
2154 guarantee that an application will be able to allocate a
2155 huge page from the pool of huge pages at fault time.
2156 .TP
2157 .IR HugePages_Surp " %lu (since Linux 2.6.24)"
2158 (\fBCONFIG_HUGETLB_PAGE\fP is required.)
2159 This is the number of huge pages in
2160 the pool above the value in
2161 .IR /proc/sys/vm/nr_hugepages .
2162 The maximum number of surplus huge pages is controlled by
2163 .IR /proc/sys/vm/nr_overcommit_hugepages .
2164 .TP
2165 .IR Hugepagesize " %lu"
2166 (\fBCONFIG_HUGETLB_PAGE\fP is required.)
2167 The size of huge pages.
2168 .RE
2169 .TP
2170 .I /proc/modules
2171 A text list of the modules that have been loaded by the system.
2172 See also
2173 .BR lsmod (8).
2174 .TP
2175 .I /proc/mounts
2176 Before kernel 2.4.19, this file was a list
2177 of all the filesystems currently mounted on the system.
2178 With the introduction of per-process mount namespaces in
2179 Linux 2.4.19, this file became a link to
2180 .IR /proc/self/mounts ,
2181 which lists the mount points of the process's own mount namespace.
2182 The format of this file is documented in
2183 .BR fstab (5).
2184 .TP
2185 .I /proc/mtrr
2186 Memory Type Range Registers.
2187 See the Linux kernel source file
2188 .I Documentation/mtrr.txt
2189 for details.
2190 .TP
2191 .I /proc/net
2192 various net pseudo-files, all of which give the status of some part of
2193 the networking layer.
2194 These files contain ASCII structures and are,
2195 therefore, readable with
2196 .BR cat (1).
2197 However, the standard
2198 .BR netstat (8)
2199 suite provides much cleaner access to these files.
2200 .TP
2201 .I /proc/net/arp
2202 This holds an ASCII readable dump of the kernel ARP table used for
2203 address resolutions.
2204 It will show both dynamically learned and preprogrammed ARP entries.
2205 The format is:
2206
2207 .nf
2208 .ft CW
2209 .in 8n
2210 IP address     HW type   Flags     HW address          Mask   Device
2211 192.168.0.50   0x1       0x2       00:50:BF:25:68:F3   *      eth0
2212 192.168.0.250  0x1       0xc       00:00:00:00:00:00   *      eth0
2213 .ft
2214 .fi
2215 .in
2216
2217 Here "IP address" is the IPv4 address of the machine and the "HW type"
2218 is the hardware type of the address from RFC\ 826.
2219 The flags are the internal
2220 flags of the ARP structure (as defined in
2221 .IR /usr/include/linux/if_arp.h )
2222 and
2223 the "HW address" is the data link layer mapping for that IP address if
2224 it is known.
2225 .TP
2226 .I /proc/net/dev
2227 The dev pseudo-file contains network device status information.
2228 This gives
2229 the number of received and sent packets, the number of errors and
2230 collisions
2231 and other basic statistics.
2232 These are used by the
2233 .BR ifconfig (8)
2234 program to report device status.
2235 The format is:
2236
2237 .nf
2238 .ft CW
2239 .in 1n
2240 Inter-|   Receive                                                |  Transmit
2241  face |bytes    packets errs drop fifo frame compressed multicast|bytes    packets errs drop fifo colls carrier compressed
2242     lo: 2776770   11307    0    0    0     0          0         0  2776770   11307    0    0    0     0       0          0
2243   eth0: 1215645    2751    0    0    0     0          0         0  1782404    4324    0    0    0   427       0          0
2244   ppp0: 1622270    5552    1    0    0     0          0         0   354130    5669    0    0    0     0       0          0
2245   tap0:    7714      81    0    0    0     0          0         0     7714      81    0    0    0     0       0          0
2246 .in
2247 .ft
2248 .fi
2249 .\" .TP
2250 .\" .I /proc/net/ipx
2251 .\" No information.
2252 .\" .TP
2253 .\" .I /proc/net/ipx_route
2254 .\" No information.
2255 .TP
2256 .I /proc/net/dev_mcast
2257 Defined in
2258 .IR /usr/src/linux/net/core/dev_mcast.c :
2259 .nf
2260 .in +5
2261 indx interface_name  dmi_u dmi_g dmi_address
2262 2    eth0            1     0     01005e000001
2263 3    eth1            1     0     01005e000001
2264 4    eth2            1     0     01005e000001
2265 .in
2266 .fi
2267 .TP
2268 .I /proc/net/igmp
2269 Internet Group Management Protocol.
2270 Defined in
2271 .IR /usr/src/linux/net/core/igmp.c .
2272 .TP
2273 .I /proc/net/rarp
2274 This file uses the same format as the
2275 .I arp
2276 file and contains the current reverse mapping database used to provide
2277 .BR rarp (8)
2278 reverse address lookup services.
2279 If RARP is not configured into the
2280 kernel,
2281 this file will not be present.
2282 .TP
2283 .I /proc/net/raw
2284 Holds a dump of the RAW socket table.
2285 Much of the information is not of
2286 use
2287 apart from debugging.
2288 The "sl" value is the kernel hash slot for the
2289 socket,
2290 the "local_address" is the local address and protocol number pair.
2291 \&"St" is
2292 the internal status of the socket.
2293 The "tx_queue" and "rx_queue" are the
2294 outgoing and incoming data queue in terms of kernel memory usage.
2295 The "tr", "tm\->when", and "rexmits" fields are not used by RAW.
2296 The "uid"
2297 field holds the effective UID of the creator of the socket.
2298 .\" .TP
2299 .\" .I /proc/net/route
2300 .\" No information, but looks similar to
2301 .\" .BR route (8).
2302 .TP
2303 .I /proc/net/snmp
2304 This file holds the ASCII data needed for the IP, ICMP, TCP, and UDP
2305 management
2306 information bases for an SNMP agent.
2307 .TP
2308 .I /proc/net/tcp
2309 Holds a dump of the TCP socket table.
2310 Much of the information is not
2311 of use apart from debugging.
2312 The "sl" value is the kernel hash slot
2313 for the socket, the "local_address" is the local address and port number pair.
2314 The "rem_address" is the remote address and port number pair
2315 (if connected).
2316 \&"St" is the internal status of the socket.
2317 The "tx_queue" and "rx_queue" are the
2318 outgoing and incoming data queue in terms of kernel memory usage.
2319 The "tr", "tm\->when", and "rexmits" fields hold internal information of
2320 the kernel socket state and are only useful for debugging.
2321 The "uid"
2322 field holds the effective UID of the creator of the socket.
2323 .TP
2324 .I /proc/net/udp
2325 Holds a dump of the UDP socket table.
2326 Much of the information is not of
2327 use apart from debugging.
2328 The "sl" value is the kernel hash slot for the
2329 socket, the "local_address" is the local address and port number pair.
2330 The "rem_address" is the remote address and port number pair
2331 (if connected). "St" is the internal status of the socket.
2332 The "tx_queue" and "rx_queue" are the outgoing and incoming data queue
2333 in terms of kernel memory usage.
2334 The "tr", "tm\->when", and "rexmits" fields
2335 are not used by UDP.
2336 The "uid"
2337 field holds the effective UID of the creator of the socket.
2338 The format is:
2339
2340 .nf
2341 .ft CW
2342 .in 1n
2343 sl  local_address rem_address   st tx_queue rx_queue tr rexmits  tm\->when uid
2344  1: 01642C89:0201 0C642C89:03FF 01 00000000:00000001 01:000071BA 00000000 0
2345  1: 00000000:0801 00000000:0000 0A 00000000:00000000 00:00000000 6F000100 0
2346  1: 00000000:0201 00000000:0000 0A 00000000:00000000 00:00000000 00000000 0
2347 .in
2348 .ft
2349 .fi
2350 .TP
2351 .I /proc/net/unix
2352 Lists the UNIX domain sockets present within the system and their
2353 status.
2354 The format is:
2355 .nf
2356 .sp .5
2357 .ft CW
2358 Num RefCount Protocol Flags    Type St Path
2359  0: 00000002 00000000 00000000 0001 03
2360  1: 00000001 00000000 00010000 0001 01 /dev/printer
2361 .ft
2362 .sp .5
2363 .fi
2364
2365 Here "Num" is the kernel table slot number, "RefCount" is the number
2366 of users of the socket, "Protocol" is currently always 0, "Flags"
2367 represent the internal kernel flags holding the status of the
2368 socket.
2369 Currently, type is always "1" (UNIX domain datagram sockets are
2370 not yet supported in the kernel).
2371 \&"St" is the internal state of the
2372 socket and Path is the bound path (if any) of the socket.
2373 .TP
2374 .I /proc/partitions
2375 Contains the major and minor numbers of each partition as well as the number
2376 of 1024-byte blocks and the partition name.
2377 .TP
2378 .I /proc/pci
2379 This is a listing of all PCI devices found during kernel initialization
2380 and their configuration.
2381
2382 This file has been deprecated in favor of a new
2383 .I /proc
2384 interface for PCI
2385 .RI ( /proc/bus/pci ).
2386 It became optional in Linux 2.2 (available with
2387 .B CONFIG_PCI_OLD_PROC
2388 set at kernel compilation).
2389 It became once more nonoptionally enabled in Linux 2.4.
2390 Next, it was deprecated in Linux 2.6 (still available with
2391 .B CONFIG_PCI_LEGACY_PROC
2392 set), and finally removed altogether since Linux 2.6.17.
2393 .\" FIXME /proc/sched_debug
2394 .\" .TP
2395 .\" .IR /proc/sched_debug " (since Linux 2.6.23)"
2396 .\" See also /proc/[pid]/sched
2397 .TP
2398 .IR /proc/profile " (since Linux 2.4)"
2399 This file is present only if the kernel was booted with the
2400 .I profile=1
2401 command-line option.
2402 It exposes kernel profiling information in a binary format for use by
2403 .BR readprofile (1).
2404 Writing (e.g., an empty string) to this file resets the profiling counters;
2405 on some architectures,
2406 writing a binary integer "profiling multiplier" of size
2407 .IR sizeof(int)
2408 sets the profiling interrupt frequency.
2409 .TP
2410 .I /proc/scsi
2411 A directory with the
2412 .I scsi
2413 mid-level pseudo-file and various SCSI low-level
2414 driver directories,
2415 which contain a file for each SCSI host in this system, all of
2416 which give the status of some part of the SCSI IO subsystem.
2417 These files contain ASCII structures and are, therefore, readable with
2418 .BR cat (1).
2419
2420 You can also write to some of the files to reconfigure the subsystem or
2421 switch certain features on or off.
2422 .TP
2423 .I /proc/scsi/scsi
2424 This is a listing of all SCSI devices known to the kernel.
2425 The listing is similar to the one seen during bootup.
2426 scsi currently supports only the \fIadd-single-device\fP command which
2427 allows root to add a hotplugged device to the list of known devices.
2428
2429 The command
2430 .in +4n
2431 .nf
2432
2433 echo \(aqscsi add-single-device 1 0 5 0\(aq > /proc/scsi/scsi
2434
2435 .fi
2436 .in
2437 will cause
2438 host scsi1 to scan on SCSI channel 0 for a device on ID 5 LUN 0.
2439 If there
2440 is already a device known on this address or the address is invalid, an
2441 error will be returned.
2442 .TP
2443 .I /proc/scsi/[drivername]
2444 \fI[drivername]\fP can currently be NCR53c7xx, aha152x, aha1542, aha1740,
2445 aic7xxx, buslogic, eata_dma, eata_pio, fdomain, in2000, pas16, qlogic,
2446 scsi_debug, seagate, t128, u15-24f, ultrastore, or wd7000.
2447 These directories show up for all drivers that registered at least one
2448 SCSI HBA.
2449 Every directory contains one file per registered host.
2450 Every host-file is named after the number the host was assigned during
2451 initialization.
2452
2453 Reading these files will usually show driver and host configuration,
2454 statistics, and so on.
2455
2456 Writing to these files allows different things on different hosts.
2457 For example, with the \fIlatency\fP and \fInolatency\fP commands,
2458 root can switch on and off command latency measurement code in the
2459 eata_dma driver.
2460 With the \fIlockup\fP and \fIunlock\fP commands,
2461 root can control bus lockups simulated by the scsi_debug driver.
2462 .TP
2463 .I /proc/self
2464 This directory refers to the process accessing the
2465 .I /proc
2466 filesystem,
2467 and is identical to the
2468 .I /proc
2469 directory named by the process ID of the same process.
2470 .TP
2471 .I /proc/slabinfo
2472 Information about kernel caches.
2473 Since Linux 2.6.16 this file is present only if the
2474 .B CONFIG_SLAB
2475 kernel configuration option is enabled.
2476 The columns in
2477 .I /proc/slabinfo
2478 are:
2479 .in +4n
2480 .nf
2481
2482 cache-name
2483 num-active-objs
2484 total-objs
2485 object-size
2486 num-active-slabs
2487 total-slabs
2488 num-pages-per-slab
2489 .fi
2490 .in
2491
2492 See
2493 .BR slabinfo (5)
2494 for details.
2495 .TP
2496 .I /proc/stat
2497 kernel/system statistics.
2498 Varies with architecture.
2499 Common
2500 entries include:
2501 .RS
2502 .TP
2503 \fIcpu  3357 0 4313 1362393\fP
2504 The amount of time, measured in units of
2505 USER_HZ (1/100ths of a second on most architectures, use
2506 .IR sysconf(_SC_CLK_TCK)
2507 to obtain the right value),
2508 .\" 1024 on Alpha and ia64
2509 that the system spent in various states:
2510 .RS
2511 .TP
2512 .I user
2513 (1) Time spent in user mode.
2514 .TP
2515 .I nice
2516 (2) Time spent in user mode with low priority (nice).
2517 .TP
2518 .I system
2519 (3) Time spent in system mode.
2520 .TP
2521 .I idle
2522 (4) Time spent in the idle task.
2523 .\" FIXME Actually, the following info about the /proc/stat 'cpu' field
2524 .\"       does not seem to be quite right (at least in 2.6.12 or 3.6):
2525 .\"       the idle time in /proc/uptime does not quite match this value
2526 This value should be USER_HZ times the
2527 second entry in the
2528 .I /proc/uptime
2529 pseudo-file.
2530 .TP
2531 .IR iowait " (since Linux 2.5.41)"
2532 (5) Time waiting for I/O to complete.
2533 .TP
2534 .IR irq " (since Linux 2.6.0-test4)"
2535 (6) Time servicing interrupts.
2536 .TP
2537 .IR softirq " (since Linux 2.6.0-test4)"
2538 (7) Time servicing softirqs.
2539 .TP
2540 .IR steal " (since Linux 2.6.11)"
2541 (8) Stolen time, which is the time spent in other operating systems when
2542 running in a virtualized environment
2543 .TP
2544 .IR guest " (since Linux 2.6.24)"
2545 (9) Time spent running a virtual CPU for guest
2546 operating systems under the control of the Linux kernel.
2547 .\" See Changelog entry for 5e84cfde51cf303d368fcb48f22059f37b3872de
2548 .TP
2549 .IR guest_nice " (since Linux 2.6.33)"
2550 .\" commit ce0e7b28fb75cb003cfc8d0238613aaf1c55e797
2551 (10) Time spent running a niced guest (virtual CPU for guest
2552 operating systems under the control of the Linux kernel).
2553 .RE
2554 .TP
2555 \fIpage 5741 1808\fP
2556 The number of pages the system paged in and the number that were paged
2557 out (from disk).
2558 .TP
2559 \fIswap 1 0\fP
2560 The number of swap pages that have been brought in and out.
2561 .TP
2562 .\" FIXME The following is not the full picture for the 'intr' of
2563 .\"       /proc/stat on 2.6:
2564 \fIintr 1462898\fP
2565 This line shows counts of interrupts serviced since boot time,
2566 for each of the possible system interrupts.
2567 The first column is the total of all interrupts serviced;
2568 each subsequent column is the total for a particular interrupt.
2569 .TP
2570 \fIdisk_io: (2,0):(31,30,5764,1,2) (3,0):\fP...
2571 (major,disk_idx):(noinfo, read_io_ops, blks_read, write_io_ops, blks_written)
2572 .br
2573 (Linux 2.4 only)
2574 .TP
2575 \fIctxt 115315\fP
2576 The number of context switches that the system underwent.
2577 .TP
2578 \fIbtime 769041601\fP
2579 boot time, in seconds since the Epoch, 1970-01-01 00:00:00 +0000 (UTC).
2580 .TP
2581 \fIprocesses 86031\fP
2582 Number of forks since boot.
2583 .TP
2584 \fIprocs_running 6\fP
2585 Number of processes in runnable state.
2586 (Linux 2.5.45 onward.)
2587 .TP
2588 \fIprocs_blocked 2\fP
2589 Number of processes blocked waiting for I/O to complete.
2590 (Linux 2.5.45 onward.)
2591 .RE
2592 .TP
2593 .I /proc/swaps
2594 Swap areas in use.
2595 See also
2596 .BR swapon (8).
2597 .TP
2598 .I /proc/sys
2599 This directory (present since 1.3.57) contains a number of files
2600 and subdirectories corresponding to kernel variables.
2601 These variables can be read and sometimes modified using
2602 the \fI/proc\fP filesystem, and the (deprecated)
2603 .BR sysctl (2)
2604 system call.
2605 .TP
2606 .IR /proc/sys/abi " (since Linux 2.4.10)"
2607 This directory may contain files with application binary information.
2608 .\" On some systems, it is not present.
2609 See the Linux kernel source file
2610 .I Documentation/sysctl/abi.txt
2611 for more information.
2612 .TP
2613 .I /proc/sys/debug
2614 This directory may be empty.
2615 .TP
2616 .I /proc/sys/dev
2617 This directory contains device-specific information (e.g.,
2618 .IR dev/cdrom/info ).
2619 On
2620 some systems, it may be empty.
2621 .TP
2622 .I /proc/sys/fs
2623 This directory contains the files and subdirectories for kernel variables
2624 related to filesystems.
2625 .TP
2626 .I /proc/sys/fs/binfmt_misc
2627 Documentation for files in this directory can be found
2628 in the Linux kernel sources in
2629 .IR Documentation/binfmt_misc.txt .
2630 .TP
2631 .IR /proc/sys/fs/dentry-state " (since Linux 2.2)"
2632 This file contains information about the status of the
2633 directory cache (dcache).
2634 The file contains six numbers,
2635 .IR nr_dentry ", " nr_unused ", " age_limit " (age in seconds), "
2636 .I want_pages
2637 (pages requested by system) and two dummy values.
2638 .RS
2639 .IP * 2
2640 .I nr_dentry
2641 is the number of allocated dentries (dcache entries).
2642 This field is unused in Linux 2.2.
2643 .IP *
2644 .I nr_unused
2645 is the number of unused dentries.
2646 .IP *
2647 .I age_limit
2648 .\" looks like this is unused in kernels 2.2 to 2.6
2649 is the age in seconds after which dcache entries
2650 can be reclaimed when memory is short.
2651 .IP *
2652 .I want_pages
2653 .\" looks like this is unused in kernels 2.2 to 2.6
2654 is nonzero when the kernel has called shrink_dcache_pages() and the
2655 dcache isn't pruned yet.
2656 .RE
2657 .TP
2658 .I /proc/sys/fs/dir-notify-enable
2659 This file can be used to disable or enable the
2660 .I dnotify
2661 interface described in
2662 .BR fcntl (2)
2663 on a system-wide basis.
2664 A value of 0 in this file disables the interface,
2665 and a value of 1 enables it.
2666 .TP
2667 .I /proc/sys/fs/dquot-max
2668 This file shows the maximum number of cached disk quota entries.
2669 On some (2.4) systems, it is not present.
2670 If the number of free cached disk quota entries is very low and
2671 you have some awesome number of simultaneous system users,
2672 you might want to raise the limit.
2673 .TP
2674 .I /proc/sys/fs/dquot-nr
2675 This file shows the number of allocated disk quota
2676 entries and the number of free disk quota entries.
2677 .TP
2678 .IR /proc/sys/fs/epoll " (since Linux 2.6.28)"
2679 This directory contains the file
2680 .IR max_user_watches ,
2681 which can be used to limit the amount of kernel memory consumed by the
2682 .I epoll
2683 interface.
2684 For further details, see
2685 .BR epoll (7).
2686 .TP
2687 .I /proc/sys/fs/file-max
2688 This file defines
2689 a system-wide limit on the number of open files for all processes.
2690 (See also
2691 .BR setrlimit (2),
2692 which can be used by a process to set the per-process limit,
2693 .BR RLIMIT_NOFILE ,
2694 on the number of files it may open.)
2695 If you get lots
2696 of error messages in the kernel log about running out of file handles
2697 (look for "VFS: file-max limit <number> reached"),
2698 try increasing this value:
2699 .br
2700
2701 .br
2702 .nf
2703 .ft CW
2704     echo 100000 > /proc/sys/fs/file-max
2705 .fi
2706 .ft
2707
2708 The kernel constant
2709 .B NR_OPEN
2710 imposes an upper limit on the value that may be placed in
2711 .IR file-max .
2712
2713 Privileged processes
2714 .RB ( CAP_SYS_ADMIN )
2715 can override the
2716 .I file-max
2717 limit.
2718 .TP
2719 .I /proc/sys/fs/file-nr
2720 This (read-only) file contains three numbers:
2721 the number of allocated file handles
2722 (i.e., the number of files presently opened);
2723 the number of free file handles;
2724 and the maximum number of file handles (i.e., the same value as
2725 .IR /proc/sys/fs/file-max ).
2726 If the number of allocated file handles is close to the
2727 maximum, you should consider increasing the maximum.
2728 Before Linux 2.6,
2729 the kernel allocated file handles dynamically,
2730 but it didn't free them again.
2731 Instead the free file handles were kept in a list for reallocation;
2732 the "free file handles" value indicates the size of that list.
2733 A large number of free file handles indicates that there was
2734 a past peak in the usage of open file handles.
2735 Since Linux 2.6, the kernel does deallocate freed file handles,
2736 and the "free file handles" value is always zero.
2737 .TP
2738 .IR /proc/sys/fs/inode-max " (only present until Linux 2.2)"
2739 This file contains the maximum number of in-memory inodes.
2740 This value should be 3-4 times larger
2741 than the value in
2742 .IR file-max ,
2743 since \fIstdin\fP, \fIstdout\fP
2744 and network sockets also need an inode to handle them.
2745 When you regularly run out of inodes, you need to increase this value.
2746
2747 Starting with Linux 2.4,
2748 there is no longer a static limit on the number of inodes,
2749 and this file is removed.
2750 .TP
2751 .I /proc/sys/fs/inode-nr
2752 This file contains the first two values from
2753 .IR inode-state .
2754 .TP
2755 .I /proc/sys/fs/inode-state
2756 This file
2757 contains seven numbers:
2758 .IR nr_inodes ,
2759 .IR nr_free_inodes ,
2760 .IR preshrink ,
2761 and four dummy values (always zero).
2762
2763 .I nr_inodes
2764 is the number of inodes the system has allocated.
2765 .\" This can be slightly more than
2766 .\" .I inode-max
2767 .\" because Linux allocates them one page full at a time.
2768 .I nr_free_inodes
2769 represents the number of free inodes.
2770
2771 .I preshrink
2772 is nonzero when the
2773 .I nr_inodes
2774 >
2775 .I inode-max
2776 and the system needs to prune the inode list instead of allocating more;
2777 since Linux 2.4, this field is a dummy value (always zero).
2778 .TP
2779 .IR /proc/sys/fs/inotify " (since Linux 2.6.13)"
2780 This directory contains files
2781 .IR max_queued_events ", " max_user_instances ", and " max_user_watches ,
2782 that can be used to limit the amount of kernel memory consumed by the
2783 .I inotify
2784 interface.
2785 For further details, see
2786 .BR inotify (7).
2787 .TP
2788 .I /proc/sys/fs/lease-break-time
2789 This file specifies the grace period that the kernel grants to a process
2790 holding a file lease
2791 .RB ( fcntl (2))
2792 after it has sent a signal to that process notifying it
2793 that another process is waiting to open the file.
2794 If the lease holder does not remove or downgrade the lease within
2795 this grace period, the kernel forcibly breaks the lease.
2796 .TP
2797 .I /proc/sys/fs/leases-enable
2798 This file can be used to enable or disable file leases
2799 .RB ( fcntl (2))
2800 on a system-wide basis.
2801 If this file contains the value 0, leases are disabled.
2802 A nonzero value enables leases.
2803 .TP
2804 .IR /proc/sys/fs/mqueue " (since Linux 2.6.6)"
2805 This directory contains files
2806 .IR msg_max ", " msgsize_max ", and " queues_max ,
2807 controlling the resources used by POSIX message queues.
2808 See
2809 .BR mq_overview (7)
2810 for details.
2811 .TP
2812 .IR /proc/sys/fs/overflowgid " and " /proc/sys/fs/overflowuid
2813 These files
2814 allow you to change the value of the fixed UID and GID.
2815 The default is 65534.
2816 Some filesystems support only 16-bit UIDs and GIDs, although in Linux
2817 UIDs and GIDs are 32 bits.
2818 When one of these filesystems is mounted
2819 with writes enabled, any UID or GID that would exceed 65535 is translated
2820 to the overflow value before being written to disk.
2821 .TP
2822 .IR /proc/sys/fs/pipe-max-size " (since Linux 2.6.35)"
2823 The value in this file defines an upper limit for raising the capacity
2824 of a pipe using the
2825 .BR fcntl (2)
2826 .B F_SETPIPE_SZ
2827 operation.
2828 This limit applies only to unprivileged processes.
2829 The default value for this file is 1,048,576.
2830 The value assigned to this file may be rounded upward,
2831 to reflect the value actually employed for a convenient implementation.
2832 To determine the rounded-up value,
2833 display the contents of this file after assigning a value to it.
2834 The minimum value that can be assigned to this file is the system page size.
2835 .TP
2836 .IR /proc/sys/fs/protected_hardlinks " (since Linux 3.6)"
2837 .\" commit 800179c9b8a1e796e441674776d11cd4c05d61d7
2838 When the value in this file is 0,
2839 no restrictions are placed on the creation of hard links
2840 (i.e., this is the historical behaviour before Linux 3.6).
2841 When the value in this file is 1,
2842 a hard link can be created to a target file
2843 only if one of the following conditions is true:
2844 .RS
2845 .IP * 3
2846 The caller has the
2847 .BR CAP_FOWNER
2848 capability.
2849 .IP *
2850 The filesystem UID of the process creating the link matches
2851 the owner (UID) of the target file
2852 (as described in
2853 .BR credentials (7),
2854 a process's filesystem UID is normally the same as its effective UID).
2855 .IP *
2856 All of the following conditions are true:
2857 .RS 4
2858 .IP \(bu 3
2859 the target is a regular file;
2860 .IP \(bu
2861 the target file does not have its set-user-ID permission bit enabled;
2862 .IP \(bu
2863 the target file does not have both its set-group-ID and
2864 group-executable permission bits enabled; and
2865 .IP \(bu
2866 the caller has permission to read and write the target file
2867 (either via the file's permissions mask or because it has
2868 suitable capabilities).
2869 .RE
2870 .RE
2871 .IP
2872 The default value in this file is 0.
2873 Setting the value to 1
2874 prevents a longstanding class of security issues caused by
2875 hard-link-based time-of-check, time-of-use races,
2876 most commonly seen in world-writable directories such as
2877 .IR /tmp .
2878 The common method of exploiting this flaw
2879 is to cross privilege boundaries when following a given hard link
2880 (i.e., a root process follows a hard link created by another user).
2881 Additionally, on systems without separated partitions,
2882 this stops unauthorized users from "pinning" vulnerable set-user-ID and
2883 set-group-ID files against being upgraded by
2884 the administrator, or linking to special files.
2885 .TP
2886 .IR /proc/sys/fs/protected_symlinks " (since Linux 3.6)"
2887 .\" commit 800179c9b8a1e796e441674776d11cd4c05d61d7
2888 When the value in this file is 0,
2889 no restrictions are placed on following symbolic links
2890 (i.e., this is the historical behaviour before Linux 3.6).
2891 When the value in this file is 1, symbolic links are followed only
2892 in the following circumstances:
2893 .RS
2894 .IP * 3
2895 the filesystem UID of the process following the link matches
2896 the owner (UID) of the symbolic link
2897 (as described in
2898 .BR credentials (7),
2899 a process's filesystem UID is normally the same as its effective UID);
2900 .IP *
2901 the link is not in a sticky world-writable directory; or
2902 .IP *
2903 the symbolic link and its parent directory have the same owner (UID)
2904 .RE
2905 .IP
2906 A system call that fails to follow a symbolic link
2907 because of the above restrictions returns the error
2908 .BR EACCES
2909 in
2910 .IR errno .
2911 .IP
2912 The default value in this file is 0.
2913 Setting the value to 1 avoids a longstanding class of security issues
2914 based on time-of-check, time-of-use races when accessing symbolic links.
2915 .TP
2916 .IR /proc/sys/fs/suid_dumpable " (since Linux 2.6.13)"
2917 .\" The following is based on text from Documentation/sysctl/kernel.txt
2918 The value in this file determines whether core dump files are
2919 produced for set-user-ID or otherwise protected/tainted binaries.
2920 Three different integer values can be specified:
2921 .RS
2922 .TP
2923 \fI0\ (default)\fP
2924 This provides the traditional (pre-Linux 2.6.13) behavior.
2925 A core dump will not be produced for a process which has
2926 changed credentials (by calling
2927 .BR seteuid (2),
2928 .BR setgid (2),
2929 or similar, or by executing a set-user-ID or set-group-ID program)
2930 or whose binary does not have read permission enabled.
2931 .TP
2932 \fI1\ ("debug")\fP
2933 All processes dump core when possible.
2934 The core dump is owned by the filesystem user ID of the dumping process
2935 and no security is applied.
2936 This is intended for system debugging situations only.
2937 Ptrace is unchecked.
2938 .TP
2939 \fI2\ ("suidsafe")\fP
2940 Any binary which normally would not be dumped (see "0" above)
2941 is dumped readable by root only.
2942 This allows the user to remove the core dump file but not to read it.
2943 For security reasons core dumps in this mode will not overwrite one
2944 another or other files.
2945 This mode is appropriate when administrators are
2946 attempting to debug problems in a normal environment.
2947 .IP
2948 Additionally, since Linux 3.6,
2949 .\" 9520628e8ceb69fa9a4aee6b57f22675d9e1b709
2950 .I /proc/sys/kernel/core_pattern
2951 must either be an absolute pathname
2952 or a pipe command, as detailed in
2953 .BR core (5).
2954 Warnings will be written to the kernel log if
2955 .I core_pattern
2956 does not follow these rules, and no core dump will be produced.
2957 .\" 54b501992dd2a839e94e76aa392c392b55080ce8
2958 .RE
2959 .TP
2960 .I /proc/sys/fs/super-max
2961 This file
2962 controls the maximum number of superblocks, and
2963 thus the maximum number of mounted filesystems the kernel
2964 can have.
2965 You need increase only
2966 .I super-max
2967 if you need to mount more filesystems than the current value in
2968 .I super-max
2969 allows you to.
2970 .TP
2971 .I /proc/sys/fs/super-nr
2972 This file
2973 contains the number of filesystems currently mounted.
2974 .TP
2975 .I /proc/sys/kernel
2976 This directory contains files controlling a range of kernel parameters,
2977 as described below.
2978 .TP
2979 .I /proc/sys/kernel/acct
2980 This file
2981 contains three numbers:
2982 .IR highwater ,
2983 .IR lowwater ,
2984 and
2985 .IR frequency .
2986 If BSD-style process accounting is enabled, these values control
2987 its behavior.
2988 If free space on filesystem where the log lives goes below
2989 .I lowwater
2990 percent, accounting suspends.
2991 If free space gets above
2992 .I highwater
2993 percent, accounting resumes.
2994 .I frequency
2995 determines
2996 how often the kernel checks the amount of free space (value is in
2997 seconds).
2998 Default values are 4, 2 and 30.
2999 That is, suspend accounting if 2% or less space is free; resume it
3000 if 4% or more space is free; consider information about amount of free space
3001 valid for 30 seconds.
3002 .TP
3003 .IR /proc/sys/kernel/cap_last_cap " (since Linux 3.2)"
3004 See
3005 .BR capabilities (7).
3006 .TP
3007 .IR /proc/sys/kernel/cap-bound " (from Linux 2.2 to 2.6.24)"
3008 This file holds the value of the kernel
3009 .I "capability bounding set"
3010 (expressed as a signed decimal number).
3011 This set is ANDed against the capabilities permitted to a process
3012 during
3013 .BR execve (2).
3014 Starting with Linux 2.6.25,
3015 the system-wide capability bounding set disappeared,
3016 and was replaced by a per-thread bounding set; see
3017 .BR capabilities (7).
3018 .TP
3019 .I /proc/sys/kernel/core_pattern
3020 See
3021 .BR core (5).
3022 .TP
3023 .I /proc/sys/kernel/core_uses_pid
3024 See
3025 .BR core (5).
3026 .TP
3027 .I /proc/sys/kernel/ctrl-alt-del
3028 This file
3029 controls the handling of Ctrl-Alt-Del from the keyboard.
3030 When the value in this file is 0, Ctrl-Alt-Del is trapped and
3031 sent to the
3032 .BR init (8)
3033 program to handle a graceful restart.
3034 When the value is greater than zero, Linux's reaction to a Vulcan
3035 Nerve Pinch (tm) will be an immediate reboot, without even
3036 syncing its dirty buffers.
3037 Note: when a program (like dosemu) has the keyboard in "raw"
3038 mode, the ctrl-alt-del is intercepted by the program before it
3039 ever reaches the kernel tty layer, and it's up to the program
3040 to decide what to do with it.
3041 .TP
3042 .IR /proc/sys/kernel/dmesg_restrict " (since Linux 2.6.37)"
3043 The value in this file determines who can see kernel syslog contents.
3044 A value of 0 in this file imposes no restrictions.
3045 If the value is 1, only privileged users can read the kernel syslog.
3046 (See
3047 .BR syslog (2)
3048 for more details.)
3049 Since Linux 3.4,
3050 .\" commit 620f6e8e855d6d447688a5f67a4e176944a084e8
3051 only users with the
3052 .BR CAP_SYS_ADMIN
3053 capability may change the value in this file.
3054 .TP
3055 .IR /proc/sys/kernel/domainname " and " /proc/sys/kernel/hostname
3056 can be used to set the NIS/YP domainname and the
3057 hostname of your box in exactly the same way as the commands
3058 .BR domainname (1)
3059 and
3060 .BR hostname (1),
3061 that is:
3062
3063 .in +4n
3064 .nf
3065 .RB "#" " echo \(aqdarkstar\(aq > /proc/sys/kernel/hostname"
3066 .RB "#" " echo \(aqmydomain\(aq > /proc/sys/kernel/domainname"
3067 .fi
3068 .in
3069
3070 has the same effect as
3071
3072 .in +4n
3073 .nf
3074 .RB "#" " hostname \(aqdarkstar\(aq"
3075 .RB "#" " domainname \(aqmydomain\(aq"
3076 .fi
3077 .in
3078
3079 Note, however, that the classic darkstar.frop.org has the
3080 hostname "darkstar" and DNS (Internet Domain Name Server)
3081 domainname "frop.org", not to be confused with the NIS (Network
3082 Information Service) or YP (Yellow Pages) domainname.
3083 These two
3084 domain names are in general different.
3085 For a detailed discussion
3086 see the
3087 .BR hostname (1)
3088 man page.
3089 .TP
3090 .I /proc/sys/kernel/hotplug
3091 This file
3092 contains the path for the hotplug policy agent.
3093 The default value in this file is
3094 .IR /sbin/hotplug .
3095 .TP
3096 .I /proc/sys/kernel/htab-reclaim
3097 (PowerPC only) If this file is set to a nonzero value,
3098 the PowerPC htab
3099 (see kernel file
3100 .IR Documentation/powerpc/ppc_htab.txt )
3101 is pruned
3102 each time the system hits the idle loop.
3103 .TP
3104 .IR /proc/sys/kernel/kptr_restrict " (since Linux 2.6.38)"
3105 .\" 455cd5ab305c90ffc422dd2e0fb634730942b257
3106 The value in this file determines whether kernel addresses are exposed via
3107 .I /proc
3108 files and other interfaces.
3109 A value of 0 in this file imposes no restrictions.
3110 If the value is 1, kernel pointers printed using the
3111 .I %pK
3112 format specifier will be replaced with zeros unless the user has the
3113 .BR CAP_SYSLOG
3114 capability.
3115 If the value is 2, kernel pointers printed using the
3116 .I %pK
3117 format specifier will be replaced with zeros regardless
3118 of the user's capabilities.
3119 The initial default value for this file was 1,
3120 but the default was changed
3121 .\" commit 411f05f123cbd7f8aa1edcae86970755a6e2a9d9
3122 to 0 in Linux 2.6.39.
3123 Since Linux 3.4,
3124 .\" commit 620f6e8e855d6d447688a5f67a4e176944a084e8
3125 only users with the
3126 .BR CAP_SYS_ADMIN
3127 capability can change the value in this file.
3128 .TP
3129 .I /proc/sys/kernel/l2cr
3130 (PowerPC only) This file
3131 contains a flag that controls the L2 cache of G3 processor
3132 boards.
3133 If 0, the cache is disabled.
3134 Enabled if nonzero.
3135 .TP
3136 .I /proc/sys/kernel/modprobe
3137 This file contains the path for the kernel module loader.
3138 The default value is
3139 .IR /sbin/modprobe .
3140 The file is present only if the kernel is built with the
3141 .B CONFIG_MODULES
3142 .RB ( CONFIG_KMOD
3143 in Linux 2.6.26 and earlier)
3144 option enabled.
3145 It is described by the Linux kernel source file
3146 .I Documentation/kmod.txt
3147 (present only in kernel 2.4 and earlier).
3148 .TP
3149 .IR /proc/sys/kernel/modules_disabled " (since Linux 2.6.31)"
3150 .\" 3d43321b7015387cfebbe26436d0e9d299162ea1
3151 .\" From Documentation/sysctl/kernel.txt
3152 A toggle value indicating if modules are allowed to be loaded
3153 in an otherwise modular kernel.
3154 This toggle defaults to off (0), but can be set true (1).
3155 Once true, modules can be neither loaded nor unloaded,
3156 and the toggle cannot be set back to false.
3157 The file is present only if the kernel is built with the
3158 .B CONFIG_MODULES
3159 option enabled.
3160 .TP
3161 .IR /proc/sys/kernel/msgmax " (since Linux 2.2)"
3162 This file defines
3163 a system-wide limit specifying the maximum number of bytes in
3164 a single message written on a System V message queue.
3165 .TP
3166 .IR /proc/sys/kernel/msgmni " (since Linux 2.4)"
3167 This file defines the system-wide limit on the number of
3168 message queue identifiers.
3169 .TP
3170 .IR /proc/sys/kernel/msgmnb " (since Linux 2.2)"
3171 This file defines a system-wide parameter used to initialize the
3172 .I msg_qbytes
3173 setting for subsequently created message queues.
3174 The
3175 .I msg_qbytes
3176 setting specifies the maximum number of bytes that may be written to the
3177 message queue.
3178 .TP
3179 .IR /proc/sys/kernel/ngroups_max " (since Linux 2.6.4)"
3180 This is a read-only file that displays the upper limit on the
3181 number of a process's group memberships.
3182 .TP
3183 .IR /proc/sys/kernel/ostype " and " /proc/sys/kernel/osrelease
3184 These files
3185 give substrings of
3186 .IR /proc/version .
3187 .TP
3188 .IR /proc/sys/kernel/overflowgid " and " /proc/sys/kernel/overflowuid
3189 These files duplicate the files
3190 .I /proc/sys/fs/overflowgid
3191 and
3192 .IR /proc/sys/fs/overflowuid .
3193 .TP
3194 .I /proc/sys/kernel/panic
3195 This file gives read/write access to the kernel variable
3196 .IR panic_timeout .
3197 If this is zero, the kernel will loop on a panic; if nonzero,
3198 it indicates that the kernel should autoreboot after this number
3199 of seconds.
3200 When you use the
3201 software watchdog device driver, the recommended setting is 60.
3202 .TP
3203 .IR /proc/sys/kernel/panic_on_oops " (since Linux 2.5.68)"
3204 This file controls the kernel's behavior when an oops
3205 or BUG is encountered.
3206 If this file contains 0, then the system
3207 tries to continue operation.
3208 If it contains 1, then the system
3209 delays a few seconds (to give klogd time to record the oops output)
3210 and then panics.
3211 If the
3212 .I /proc/sys/kernel/panic
3213 file is also nonzero, then the machine will be rebooted.
3214 .TP
3215 .IR /proc/sys/kernel/pid_max " (since Linux 2.5.34)"
3216 This file specifies the value at which PIDs wrap around
3217 (i.e., the value in this file is one greater than the maximum PID).
3218 The default value for this file, 32768,
3219 results in the same range of PIDs as on earlier kernels.
3220 On 32-bit platforms, 32768 is the maximum value for
3221 .IR pid_max .
3222 On 64-bit systems,
3223 .I pid_max
3224 can be set to any value up to 2^22
3225 .RB ( PID_MAX_LIMIT ,
3226 approximately 4 million).
3227 .\" Prior to 2.6.10, pid_max could also be raised above 32768 on 32-bit
3228 .\" platforms, but this broke /proc/[pid]
3229 .\" See http://marc.theaimsgroup.com/?l=linux-kernel&m=109513010926152&w=2
3230 .TP
3231 .IR /proc/sys/kernel/powersave-nap " (PowerPC only)"
3232 This file contains a flag.
3233 If set, Linux-PPC will use the "nap" mode of
3234 powersaving,
3235 otherwise the "doze" mode will be used.
3236 .TP
3237 .I /proc/sys/kernel/printk
3238 The four values in this file are
3239 .IR console_loglevel ,
3240 .IR default_message_loglevel ,
3241 .IR minimum_console_level ,
3242 and
3243 .IR default_console_loglevel .
3244 These values influence
3245 .I printk()
3246 behavior when printing or logging error messages.
3247 See
3248 .BR syslog (2)
3249 for more info on the different loglevels.
3250 Messages with a higher priority than
3251 .I console_loglevel
3252 will be printed to the console.
3253 Messages without an explicit priority will be printed with priority
3254 .IR default_message_level .
3255 .I minimum_console_loglevel
3256 is the minimum (highest) value to which
3257 .I console_loglevel
3258 can be set.
3259 .I default_console_loglevel
3260 is the default value for
3261 .IR console_loglevel .
3262 .TP
3263 .IR /proc/sys/kernel/pty " (since Linux 2.6.4)"
3264 This directory contains two files relating to the number of UNIX 98
3265 pseudoterminals (see
3266 .BR pts (4))
3267 on the system.
3268 .TP
3269 .I /proc/sys/kernel/pty/max
3270 This file defines the maximum number of pseudoterminals.
3271 .TP
3272 .I /proc/sys/kernel/pty/nr
3273 This read-only file
3274 indicates how many pseudoterminals are currently in use.
3275 .TP
3276 .I /proc/sys/kernel/random
3277 This directory
3278 contains various parameters controlling the operation of the file
3279 .IR /dev/random .
3280 See
3281 .BR random (4)
3282 for further information.
3283 .TP
3284 .IR /proc/sys/kernel/random/uuid " (since Linux 2.4)"
3285 Each read from this read-only file returns a randomly generated 128-bit UUID,
3286 as a string in the standard UUID format.
3287 .TP
3288 .I /proc/sys/kernel/real-root-dev
3289 This file is documented in the Linux kernel source file
3290 .IR Documentation/initrd.txt .
3291 .TP
3292 .IR /proc/sys/kernel/reboot-cmd " (Sparc only) "
3293 This file seems to be a way to give an argument to the SPARC
3294 ROM/Flash boot loader.
3295 Maybe to tell it what to do after
3296 rebooting?
3297 .TP
3298 .I /proc/sys/kernel/rtsig-max
3299 (Only in kernels up to and including 2.6.7; see
3300 .BR setrlimit (2))
3301 This file can be used to tune the maximum number
3302 of POSIX real-time (queued) signals that can be outstanding
3303 in the system.
3304 .TP
3305 .I /proc/sys/kernel/rtsig-nr
3306 (Only in kernels up to and including 2.6.7.)
3307 This file shows the number POSIX real-time signals currently queued.
3308 .TP
3309 .IR /proc/sys/kernel/sched_rr_timeslice_ms " (since Linux 3.9)"
3310 See
3311 .BR sched_rr_get_interval (2).
3312 .TP
3313 .IR /proc/sys/kernel/sem " (since Linux 2.4)"
3314 This file contains 4 numbers defining limits for System V IPC semaphores.
3315 These fields are, in order:
3316 .RS
3317 .IP SEMMSL 8
3318 The maximum semaphores per semaphore set.
3319 .IP SEMMNS 8
3320 A system-wide limit on the number of semaphores in all semaphore sets.
3321 .IP SEMOPM 8
3322 The maximum number of operations that may be specified in a
3323 .BR semop (2)
3324 call.
3325 .IP SEMMNI 8
3326 A system-wide limit on the maximum number of semaphore identifiers.
3327 .RE
3328 .TP
3329 .I /proc/sys/kernel/sg-big-buff
3330 This file
3331 shows the size of the generic SCSI device (sg) buffer.
3332 You can't tune it just yet, but you could change it at
3333 compile time by editing
3334 .I include/scsi/sg.h
3335 and changing
3336 the value of
3337 .BR SG_BIG_BUFF .
3338 However, there shouldn't be any reason to change this value.
3339 .TP
3340 .IR /proc/sys/kernel/shm_rmid_forced " (since Linux 3.1)"
3341 .\" commit b34a6b1da371ed8af1221459a18c67970f7e3d53
3342 .\" See also Documentation/sysctl/kernel.txt
3343 If this file is set to 1, all System V shared memory segments will
3344 be marked for destruction as soon as the number of attached processes
3345 falls to zero;
3346 in other words, it is no longer possible to create shared memory segments
3347 that exist independently of any attached process.
3348 .IP
3349 The effect is as though a
3350 .BR shmctl (2)
3351 .B IPC_RMID
3352 is performed on all existing  segments as well as all segments
3353 created in the future (until this file is reset to 0).
3354 Note that existing segments that are attached to no process will be
3355 immediately destroyed when this file is set to 1.
3356 Setting this option will also destroy segments that were created,
3357 but never attached,
3358 upon termination of the process that created the segment with
3359 .BR shmget (2).
3360 .IP
3361 Setting this file to 1 provides a way of ensuring that
3362 all System V shared memory segments are counted against the
3363 resource usage and resource limits (see the description of
3364 .B RLIMIT_AS
3365 in
3366 .BR getrlimit (2))
3367 of at least one process.
3368 .IP
3369 Because setting this file to 1 produces behavior that is nonstandard
3370 and could also break existing applications,
3371 the default value in this file is 0.
3372 Only set this file to 1 if you have a good understanding
3373 of the semantics of the applications using
3374 System V shared memory on your system.
3375 .TP
3376 .IR /proc/sys/kernel/shmall " (since Linux 2.2)"
3377 This file
3378 contains the system-wide limit on the total number of pages of
3379 System V shared memory.
3380 .TP
3381 .IR /proc/sys/kernel/shmmax " (since Linux 2.2)"
3382 This file
3383 can be used to query and set the run-time limit
3384 on the maximum (System V IPC) shared memory segment size that can be
3385 created.
3386 Shared memory segments up to 1GB are now supported in the
3387 kernel.
3388 This value defaults to
3389 .BR SHMMAX .
3390 .TP
3391 .IR /proc/sys/kernel/shmmni " (since Linux 2.4)"
3392 This file
3393 specifies the system-wide maximum number of System V shared memory
3394 segments that can be created.
3395 .TP
3396 .I /proc/sys/kernel/sysrq
3397 This file controls the functions allowed to be invoked by the SysRq key.
3398 By default,
3399 the file contains 1 meaning that every possible SysRq request is allowed
3400 (in older kernel versions, SysRq was disabled by default,
3401 and you were required to specifically enable it at run-time,
3402 but this is not the case any more).
3403 Possible values in this file are:
3404
3405    0 - disable sysrq completely
3406    1 - enable all functions of sysrq
3407   >1 - bit mask of allowed sysrq functions, as follows:
3408           2 - enable control of console logging level
3409           4 - enable control of keyboard (SAK, unraw)
3410           8 - enable debugging dumps of processes etc.
3411          16 - enable sync command
3412          32 - enable remount read-only
3413          64 - enable signaling of processes (term, kill, oom-kill)
3414         128 - allow reboot/poweroff
3415         256 - allow nicing of all real-time tasks
3416
3417 This file is present only if the
3418 .B CONFIG_MAGIC_SYSRQ
3419 kernel configuration option is enabled.
3420 For further details see the Linux kernel source file
3421 .IR Documentation/sysrq.txt .
3422 .TP
3423 .I /proc/sys/kernel/version
3424 This file contains a string like:
3425
3426     #5 Wed Feb 25 21:49:24 MET 1998
3427
3428 The "#5" means that
3429 this is the fifth kernel built from this source base and the
3430 date behind it indicates the time the kernel was built.
3431 .TP
3432 .IR /proc/sys/kernel/threads-max " (since Linux 2.3.11)"
3433 This file specifies the system-wide limit on the number of
3434 threads (tasks) that can be created on the system.
3435 .TP
3436 .IR /proc/sys/kernel/zero-paged " (PowerPC only) "
3437 This file
3438 contains a flag.
3439 When enabled (nonzero), Linux-PPC will pre-zero pages in
3440 the idle loop, possibly speeding up get_free_pages.
3441 .TP
3442 .I /proc/sys/net
3443 This directory contains networking stuff.
3444 Explanations for some of the files under this directory can be found in
3445 .BR tcp (7)
3446 and
3447 .BR ip (7).
3448 .TP
3449 .I /proc/sys/net/core/somaxconn
3450 This file defines a ceiling value for the
3451 .I backlog
3452 argument of
3453 .BR listen (2);
3454 see the
3455 .BR listen (2)
3456 manual page for details.
3457 .TP
3458 .I /proc/sys/proc
3459 This directory may be empty.
3460 .TP
3461 .I /proc/sys/sunrpc
3462 This directory supports Sun remote procedure call for network filesystem
3463 (NFS).
3464 On some systems, it is not present.
3465 .TP
3466 .I /proc/sys/vm
3467 This directory contains files for memory management tuning, buffer and
3468 cache management.
3469 .TP
3470 .IR /proc/sys/vm/drop_caches " (since Linux 2.6.16)"
3471 Writing to this file causes the kernel to drop clean caches, dentries, and
3472 inodes from memory, causing that memory to become free.
3473 This can be useful for memory management testing and
3474 performing reproducible filesystem benchmarks.
3475 Because writing to this file causes the benefits of caching to be lost,
3476 it can degrade overall system performance.
3477
3478 To free pagecache, use:
3479
3480     echo 1 > /proc/sys/vm/drop_caches
3481
3482 To free dentries and inodes, use:
3483
3484     echo 2 > /proc/sys/vm/drop_caches
3485
3486 To free pagecache, dentries and inodes, use:
3487
3488     echo 3 > /proc/sys/vm/drop_caches
3489
3490 Because writing to this file is a nondestructive operation and dirty objects
3491 are not freeable, the
3492 user should run
3493 .BR sync (8)
3494 first.
3495 .TP
3496 .IR /proc/sys/vm/legacy_va_layout " (since Linux 2.6.9)"
3497 .\" The following is from Documentation/filesystems/proc.txt
3498 If nonzero, this disables the new 32-bit memory-mapping layout;
3499 the kernel will use the legacy (2.4) layout for all processes.
3500 .TP
3501 .IR /proc/sys/vm/memory_failure_early_kill " (since Linux 2.6.32)"
3502 .\" The following is based on the text in Documentation/sysctl/vm.txt
3503 Control how to kill processes when an uncorrected memory error
3504 (typically a 2-bit error in a memory module)
3505 that cannot be handled by the kernel
3506 is detected in the background by hardware.
3507 In some cases (like the page still having a valid copy on disk),
3508 the kernel will handle the failure
3509 transparently without affecting any applications.
3510 But if there is no other up-to-date copy of the data,
3511 it will kill processes to prevent any data corruptions from propagating.
3512
3513 The file has one of the following values:
3514 .RS
3515 .IP 1: 4
3516 Kill all processes that have the corrupted-and-not-reloadable page mapped
3517 as soon as the corruption is detected.
3518 Note this is not supported for a few types of pages, like kernel internally
3519 allocated data or the swap cache, but works for the majority of user pages.
3520 .IP 0: 4
3521 Only unmap the corrupted page from all processes and kill only a process
3522 that tries to access it.
3523 .RE
3524 .IP
3525 The kill is performed using a
3526 .B SIGBUS
3527 signal with
3528 .I si_code
3529 set to
3530 .BR BUS_MCEERR_AO .
3531 Processes can handle this if they want to; see
3532 .BR sigaction (2)
3533 for more details.
3534
3535 This feature is active only on architectures/platforms with advanced machine
3536 check handling and depends on the hardware capabilities.
3537
3538 Applications can override the
3539 .I memory_failure_early_kill
3540 setting individually with the
3541 .BR prctl (2)
3542 .B PR_MCE_KILL
3543 operation.
3544 .IP
3545 Only present if the kernel was configured with
3546 .BR CONFIG_MEMORY_FAILURE .
3547 .TP
3548 .IR /proc/sys/vm/memory_failure_recovery " (since Linux 2.6.32)"
3549 .\" The following is based on the text in Documentation/sysctl/vm.txt
3550 Enable memory failure recovery (when supported by the platform)
3551 .RS
3552 .IP 1: 4
3553 Attempt recovery.
3554 .IP 0: 4
3555 Always panic on a memory failure.
3556 .RE
3557 .IP
3558 Only present if the kernel was configured with
3559 .BR CONFIG_MEMORY_FAILURE .
3560 .TP
3561 .IR /proc/sys/vm/oom_dump_tasks " (since Linux 2.6.25)"
3562 .\" The following is from Documentation/sysctl/vm.txt
3563 Enables a system-wide task dump (excluding kernel threads) to be
3564 produced when the kernel performs an OOM-killing.
3565 The dump includes the following information
3566 for each task (thread, process):
3567 thread ID, real user ID, thread group ID (process ID),
3568 virtual memory size, resident set size,
3569 the CPU that the task is scheduled on,
3570 oom_adj score (see the description of
3571 .IR /proc/[pid]/oom_adj ),
3572 and command name.
3573 This is helpful to determine why the OOM-killer was invoked
3574 and to identify the rogue task that caused it.
3575
3576 If this contains the value zero, this information is suppressed.
3577 On very large systems with thousands of tasks,
3578 it may not be feasible to dump the memory state information for each one.
3579 Such systems should not be forced to incur a performance penalty in
3580 OOM situations when the information may not be desired.
3581
3582 If this is set to nonzero, this information is shown whenever the
3583 OOM-killer actually kills a memory-hogging task.
3584
3585 The default value is 0.
3586 .TP
3587 .IR /proc/sys/vm/oom_kill_allocating_task " (since Linux 2.6.24)"
3588 .\" The following is from Documentation/sysctl/vm.txt
3589 This enables or disables killing the OOM-triggering task in
3590 out-of-memory situations.
3591
3592 If this is set to zero, the OOM-killer will scan through the entire
3593 tasklist and select a task based on heuristics to kill.
3594 This normally selects a rogue memory-hogging task that
3595 frees up a large amount of memory when killed.
3596
3597 If this is set to nonzero, the OOM-killer simply kills the task that
3598 triggered the out-of-memory condition.
3599 This avoids a possibly expensive tasklist scan.
3600
3601 If
3602 .I /proc/sys/vm/panic_on_oom
3603 is nonzero, it takes precedence over whatever value is used in
3604 .IR /proc/sys/vm/oom_kill_allocating_task .
3605
3606 The default value is 0.
3607 .TP
3608 .I /proc/sys/vm/overcommit_memory
3609 This file contains the kernel virtual memory accounting mode.
3610 Values are:
3611 .RS
3612 .IP
3613 0: heuristic overcommit (this is the default)
3614 .br
3615 1: always overcommit, never check
3616 .br
3617 2: always check, never overcommit
3618 .RE
3619 .IP
3620 In mode 0, calls of
3621 .BR mmap (2)
3622 with
3623 .B MAP_NORESERVE
3624 are not checked, and the default check is very weak,
3625 leading to the risk of getting a process "OOM-killed".
3626 Under Linux 2.4 any nonzero value implies mode 1.
3627 In mode 2 (available since Linux 2.6), the total virtual address space
3628 on the system is limited to (SS + RAM*(r/100)),
3629 where SS is the size of the swap space, and RAM
3630 is the size of the physical memory, and r is the contents of the file
3631 .IR /proc/sys/vm/overcommit_ratio .
3632 .TP
3633 .I /proc/sys/vm/overcommit_ratio
3634 See the description of
3635 .IR /proc/sys/vm/overcommit_memory .
3636 .TP
3637 .IR /proc/sys/vm/panic_on_oom " (since Linux 2.6.18)"
3638 .\" The following is adapted from Documentation/sysctl/vm.txt
3639 This enables or disables a kernel panic in
3640 an out-of-memory situation.
3641
3642 If this file is set to the value 0,
3643 the kernel's OOM-killer will kill some rogue process.
3644 Usually, the OOM-killer is able to kill a rogue process and the
3645 system will survive.
3646
3647 If this file is set to the value 1,
3648 then the kernel normally panics when out-of-memory happens.
3649 However, if a process limits allocations to certain nodes
3650 using memory policies
3651 .RB ( mbind  (2)
3652 .BR MPOL_BIND )
3653 or cpusets
3654 .RB ( cpuset (7))
3655 and those nodes reach memory exhaustion status,
3656 one process may be killed by the OOM-killer.
3657 No panic occurs in this case:
3658 because other nodes' memory may be free,
3659 this means the system as a whole may not have reached
3660 an out-of-memory situation yet.
3661
3662 If this file is set to the value 2,
3663 the kernel always panics when an out-of-memory condition occurs.
3664
3665 The default value is 0.
3666 1 and 2 are for failover of clustering.
3667 Select either according to your policy of failover.
3668 .TP
3669 .IR /proc/sys/vm/swappiness
3670 .\" The following is from Documentation/sysctl/vm.txt
3671 The value in this file controls how aggressively the kernel will swap
3672 memory pages.
3673 Higher values increase aggressiveness, lower values
3674 decrease aggressiveness.
3675 The default value is 60.
3676 .TP
3677 .IR /proc/sysrq-trigger " (since Linux 2.4.21)"
3678 Writing a character to this file triggers the same SysRq function as
3679 typing ALT-SysRq-<character> (see the description of
3680 .IR /proc/sys/kernel/sysrq ).
3681 This file is normally writable only by
3682 .IR root .
3683 For further details see the Linux kernel source file
3684 .IR Documentation/sysrq.txt .
3685 .TP
3686 .I /proc/sysvipc
3687 Subdirectory containing the pseudo-files
3688 .IR msg ", "  sem " and "  shm "."
3689 These files list the System V Interprocess Communication (IPC) objects
3690 (respectively: message queues, semaphores, and shared memory)
3691 that currently exist on the system,
3692 providing similar information to that available via
3693 .BR ipcs (1).
3694 These files have headers and are formatted (one IPC object per line)
3695 for easy understanding.
3696 .BR svipc (7)
3697 provides further background on the information shown by these files.
3698 .TP
3699 .I /proc/tty
3700 Subdirectory containing the pseudo-files and subdirectories for
3701 tty drivers and line disciplines.
3702 .TP
3703 .I /proc/uptime
3704 This file contains two numbers: the uptime of the system (seconds),
3705 and the amount of time spent in idle process (seconds).
3706 .TP
3707 .I /proc/version
3708 This string identifies the kernel version that is currently running.
3709 It includes the contents of
3710 .IR /proc/sys/kernel/ostype ,
3711 .I /proc/sys/kernel/osrelease
3712 and
3713 .IR /proc/sys/kernel/version .
3714 For example:
3715 .nf
3716 .in -2
3717 .ft CW
3718 Linux version 1.0.9 (quinlan@phaze) #1 Sat May 14 01:51:54 EDT 1994
3719 .ft
3720 .in +2
3721 .fi
3722 .\" FIXME Document /proc/timer_list
3723 .\" .TP
3724 .\" .IR /proc/timer_list " (since Linux 2.6.21)"
3725 .\" See the 2.6.21 Change log
3726 .\" FIXME Document /proc/timer_stats
3727 .\" .TP
3728 .\" .IR /proc/timer_stats " (since Linux 2.6.21)"
3729 .\" See the 2.6.21 Change log
3730 .TP
3731 .IR /proc/vmstat " (since Linux 2.6)"
3732 This file displays various virtual memory statistics.
3733 .TP
3734 .IR /proc/zoneinfo " (since Linux 2.6.13)"
3735 This file display information about memory zones.
3736 This is useful for analyzing virtual memory behavior.
3737 .\" FIXME more should be said about /proc/zoneinfo
3738 .SH NOTES
3739 Many strings (i.e., the environment and command line) are in
3740 the internal format, with subfields terminated by null bytes (\(aq\\0\(aq),
3741 so you
3742 may find that things are more readable if you use \fIod \-c\fP or \fItr
3743 "\\000" "\\n"\fP to read them.
3744 Alternatively, \fIecho \`cat <file>\`\fP works well.
3745
3746 This manual page is incomplete, possibly inaccurate, and is the kind
3747 of thing that needs to be updated very often.
3748 .\" .SH ACKNOWLEDGEMENTS
3749 .\" The material on /proc/sys/fs and /proc/sys/kernel is closely based on
3750 .\" kernel source documentation files written by Rik van Riel.
3751 .SH SEE ALSO
3752 .BR cat (1),
3753 .BR dmesg (1),
3754 .BR find (1),
3755 .BR free (1),
3756 .BR ps (1),
3757 .BR tr (1),
3758 .BR uptime (1),
3759 .BR chroot (2),
3760 .BR mmap (2),
3761 .BR readlink (2),
3762 .BR syslog (2),
3763 .BR slabinfo (5),
3764 .BR hier (7),
3765 .BR time (7),
3766 .BR arp (8),
3767 .BR hdparm (8),
3768 .BR ifconfig (8),
3769 .BR init (8),
3770 .BR lsmod (8),
3771 .BR lspci (8),
3772 .BR mount (8),
3773 .BR netstat (8),
3774 .BR procinfo (8),
3775 .BR route (8),
3776 .BR sysctl (8)
3777
3778 The Linux kernel source files:
3779 .IR Documentation/filesystems/proc.txt
3780 .IR Documentation/sysctl/fs.txt ,
3781 .IR Documentation/sysctl/kernel.txt ,
3782 .IR Documentation/sysctl/net.txt ,
3783 and
3784 .IR Documentation/sysctl/vm.txt .
3785 .SH COLOPHON
3786 This page is part of release 3.65 of the Linux
3787 .I man-pages
3788 project.
3789 A description of the project,
3790 and information about reporting bugs,
3791 can be found at
3792 \%http://www.kernel.org/doc/man\-pages/.