OSDN Git Service

(split) LDP man-pages の original/ を v3.29 に更新。
[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 .\" This is free documentation; you can redistribute it and/or
10 .\" modify it under the terms of the GNU General Public License as
11 .\" published by the Free Software Foundation; either version 2 of
12 .\" the License, or (at your option) any later version.
13 .\"
14 .\" The GNU General Public License's references to "object code"
15 .\" and "executables" are to be interpreted as the output of any
16 .\" document formatting or typesetting system, including
17 .\" intermediate and printed output.
18 .\"
19 .\" This manual is distributed in the hope that it will be useful,
20 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
21 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22 .\" GNU General Public License for more details.
23 .\"
24 .\" You should have received a copy of the GNU General Public
25 .\" License along with this manual; if not, write to the Free
26 .\" Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111,
27 .\" USA.
28 .\"
29 .\" Modified 1995-05-17 by faith@cs.unc.edu
30 .\" Minor changes by aeb and Marty Leisner (leisner@sdsp.mc.xerox.com).
31 .\" Modified 1996-04-13, 1996-07-22 by aeb@cwi.nl
32 .\" Modified 2001-12-16 by rwhron@earthlink.net
33 .\" Modified 2002-07-13 by jbelton@shaw.ca
34 .\" Modified 2002-07-22, 2003-05-27, 2004-04-06, 2004-05-25
35 .\"    by Michael Kerrisk <mtk.manpages@gmail.com>
36 .\" 2004-11-17, mtk -- updated notes on /proc/loadavg
37 .\" 2004-12-01, mtk, rtsig-max and rtsig-nr went away in 2.6.8
38 .\" 2004-12-14, mtk, updated 'statm', and fixed error in order of list
39 .\" 2005-05-12, mtk, updated 'stat'
40 .\" 2005-07-13, mtk, added /proc/sys/fs/mqueue/*
41 .\" 2005-09-16, mtk, Added /proc/sys/fs/suid_dumpable
42 .\" 2005-09-19, mtk, added /proc/zoneinfo
43 .\" 2005-03-01, mtk, moved /proc/sys/fs/mqueue/* material to mq_overview.7.
44 .\" 2008-06-05, mtk, Added /proc/[pid]/oom_score, /proc/[pid]/oom_adj,
45 .\"     /proc/[pid]/limits, /proc/[pid]/mountinfo, /proc/[pid]/mountstats,
46 .\"     and /proc/[pid]/fdinfo/*.
47 .\" 2008-06-19, mtk, Documented /proc/[pid]/status.
48 .\" 2008-07-15, mtk, added /proc/config.gz
49 .\"
50 .\" FIXME 2.6.13 seems to have /proc/vmcore implemented
51 .\" in the source code, but there is no option available under
52 .\" 'make xconfig'; eventually this should be fixed, and then info
53 .\" from the patch-2.6.13 and change log could be used to write an
54 .\" entry in this man page.
55 .\" Needs CONFIG_VMCORE
56 .\"
57 .\" FIXME cross check against Documentation/filesystems/proc.txt
58 .\" to see what information could be imported from that file
59 .\" into this file.
60 .\"
61 .TH PROC 5 2010-06-19 "Linux" "Linux Programmer's Manual"
62 .SH NAME
63 proc \- process information pseudo-file system
64 .SH DESCRIPTION
65 The
66 .I proc
67 file system is a pseudo-file system which is used as an interface to
68 kernel data structures.
69 It is commonly mounted at
70 .IR /proc .
71 Most of it is read-only, but some files allow kernel variables to be
72 changed.
73 .LP
74 The following outline gives a quick tour through the
75 .I /proc
76 hierarchy.
77 .PD 1
78 .TP
79 .I /proc/[pid]
80 There is a numerical subdirectory for each running process; the
81 subdirectory is named by the process ID.
82 Each such subdirectory contains the following
83 pseudo-files and directories.
84 .\" FIXME Describe /proc/[pid]/attr and
85 .\"       /proc/[pid]/task/[tid]/attr
86 .\"       This is a directory
87 .\"       Added in ???
88 .\"       CONFIG_SECURITY
89 .\"
90 .TP
91 .IR /proc/[pid]/auxv " (since 2.6.0-test7)"
92 This contains the contents of the ELF interpreter information passed
93 to the process at exec time.
94 The format is one \fIunsigned long\fP ID
95 plus one \fIunsigned long\fP value for each entry.
96 The last entry contains two zeros.
97 .\" FIXME Describe /proc/[pid]/cgroup and
98 .\"       /proc/[pid]/task/[tid]/cgroup
99 .\"       Info in Documentation/cgroups.txt
100 .\"       Added in 2.6.24
101 .\"       CONFIG_CGROUPS
102 .\"
103 .\" FIXME Describe /proc/[pid]/clear_refs
104 .\"       Added in 2.6.22
105 .\"       "Clears page referenced bits shown in smaps output"
106 .\"       write-only
107 .\"       CONFIG_PROC_PAGE_MONITOR
108 .TP
109 .I /proc/[pid]/cmdline
110 This holds the complete command line for the process,
111 unless the process is a zombie.
112 .\" In 2.3.26, this also used to be true if the process was swapped out.
113 In the latter case, there is nothing in this file:
114 that is, a read on this file will return 0 characters.
115 The command-line arguments appear in this file as a set of
116 strings separated by null bytes (\(aq\\0\(aq),
117 with a further null byte after the last string.
118 .TP
119 .IR /proc/[pid]/coredump_filter " (since kernel 2.6.23)"
120 See
121 .BR core (5).
122 .TP
123 .IR /proc/[pid]/cpuset " (since kernel 2.6.12)"
124 .\" and/proc/[pid]/task/[tid]/cpuset
125 See
126 .BR cpuset (7).
127 .TP
128 .I /proc/[pid]/cwd
129 This is a symbolic link to the current working directory of the process.
130 To find out the current working directory of process 20,
131 for instance, you can do this:
132
133 .in +4n
134 .nf
135 .RB "$" " cd /proc/20/cwd; /bin/pwd"
136 .fi
137 .in
138
139 Note that the
140 .I pwd
141 command is often a shell built-in, and might
142 not work properly.
143 In
144 .BR bash (1),
145 you may use
146 .IR "pwd\ \-P" .
147
148 .\" The following was still true as at kernel 2.6.13
149 In a multithreaded process, the contents of this symbolic link
150 are not available if the main thread has already terminated
151 (typically by calling
152 .BR pthread_exit (3)).
153 .TP
154 .I /proc/[pid]/environ
155 This file contains the environment for the process.
156 The entries are separated by null bytes (\(aq\\0\(aq),
157 and there may be a null byte at the end.
158 Thus, to print out the environment of process 1, you would do:
159 .in +4n
160 .nf
161
162 .ft CW
163 .RB "$" " (cat /proc/1/environ; echo) | tr \(aq\e000\(aq \(aq\en\(aq"
164 .fi
165 .ft P
166 .in
167 .TP
168 .I /proc/[pid]/exe
169 Under Linux 2.2 and later, this file is a symbolic link
170 containing the actual pathname of the executed command.
171 This symbolic link can be dereferenced normally; attempting to open
172 it will open the executable.
173 You can even type
174 .I /proc/[pid]/exe
175 to run another copy of the same executable as is being run by
176 process [pid].
177 .\" The following was still true as at kernel 2.6.13
178 In a multithreaded process, the contents of this symbolic link
179 are not available if the main thread has already terminated
180 (typically by calling
181 .BR pthread_exit (3)).
182
183 Under Linux 2.0 and earlier
184 .I /proc/[pid]/exe
185 is a pointer to the binary which was executed,
186 and appears as a symbolic link.
187 A
188 .BR readlink (2)
189 call on this file under Linux 2.0 returns a string in the format:
190
191     [device]:inode
192
193 For example, [0301]:1502 would be inode 1502 on device major 03 (IDE,
194 MFM, etc. drives) minor 01 (first partition on the first drive).
195
196 .BR find (1)
197 with the
198 .I \-inum
199 option can be used to locate the file.
200 .TP
201 .I /proc/[pid]/fd
202 This is a subdirectory containing one entry for each file which the
203 process has open, named by its file descriptor, and which is a
204 symbolic link to the actual file.
205 Thus, 0 is standard input, 1 standard output, 2 standard error, etc.
206
207 .\" The following was still true as at kernel 2.6.13
208 In a multithreaded process, the contents of this directory
209 are not available if the main thread has already terminated
210 (typically by calling
211 .BR pthread_exit (3)).
212
213 Programs that will take a filename as a command-line argument,
214 but will not take input from standard input if no argument is supplied,
215 or that write to a file named as a command-line argument,
216 but will not send their output to standard output
217 if no argument is supplied, can nevertheless be made to use
218 standard input or standard out using
219 .IR /proc/[pid]/fd .
220 For example, assuming that
221 .I \-i
222 is the flag designating an input file and
223 .I \-o
224 is the flag designating an output file:
225 .in +4n
226 .nf
227
228 .RB "$" " foobar \-i /proc/self/fd/0 \-o /proc/self/fd/1 ..."
229 .fi
230 .in
231
232 and you have a working filter.
233 .\" The following is not true in my tests (MTK):
234 .\" Note that this will not work for
235 .\" programs that seek on their files, as the files in the fd directory
236 .\" are not seekable.
237
238 .I /proc/self/fd/N
239 is approximately the same as
240 .I /dev/fd/N
241 in some UNIX and UNIX-like systems.
242 Most Linux MAKEDEV scripts symbolically link
243 .I /dev/fd
244 to
245 .IR /proc/self/fd ,
246 in fact.
247
248 Most systems provide symbolic links
249 .IR /dev/stdin ,
250 .IR /dev/stdout ,
251 and
252 .IR /dev/stderr ,
253 which respectively link to the files
254 .IR 0 ,
255 .IR 1 ,
256 and
257 .IR 2
258 in
259 .IR /proc/self/fd .
260 Thus the example command above could be written as:
261 .in +4n
262 .nf
263
264 .RB "$" " foobar \-i /dev/stdin \-o /dev/stdout ..."
265 .fi
266 .in
267 .\" FIXME Describe /proc/[pid]/loginuid
268 .\"       Added in 2.6.11; updating requires CAP_AUDIT_CONTROL
269 .\"       CONFIG_AUDITSYSCALL
270 .TP
271 .IR /proc/[pid]/fdinfo/ " (since kernel 2.6.22)"
272 This is a subdirectory containing one entry for each file which the
273 process has open, named by its file descriptor.
274 The contents of each file can be read to obtain information
275 about the corresponding file descriptor, for example:
276 .in +4n
277 .nf
278
279 .RB "$" " cat /proc/12015/fdinfo/4"
280 pos:    1000
281 flags:  01002002
282 .fi
283 .in
284
285 The
286 .I pos
287 field is a decimal number showing the current file offset.
288 The
289 .I flags
290 field is an octal number that displays the
291 file access mode and file status flags (see
292 .BR open (2)).
293
294 The files in this directory are readable only by the owner of the process.
295 .\" FIXME document /proc/[pid]/io
296 .\" .TP
297 .\" .IR /proc/[pid]/io " (since kernel 2.6.20)"
298 .TP
299 .IR /proc/[pid]/limits " (since kernel 2.6.24)"
300 This file displays the soft limit, hard limit, and units of measurement
301 for each of the process's resource limits (see
302 .BR getrlimit (2)).
303 The file is protected to only allow reading by the real UID of the process.
304 .TP
305 .I /proc/[pid]/maps
306 A file containing the currently mapped memory regions and their access
307 permissions.
308
309 The format is:
310
311 .nf
312 .ft CW
313 address           perms offset  dev   inode   pathname
314 08048000-08056000 r-xp 00000000 03:0c 64593   /usr/sbin/gpm
315 08056000-08058000 rw-p 0000d000 03:0c 64593   /usr/sbin/gpm
316 08058000-0805b000 rwxp 00000000 00:00 0
317 40000000-40013000 r-xp 00000000 03:0c 4165    /lib/ld-2.2.4.so
318 40013000-40015000 rw-p 00012000 03:0c 4165    /lib/ld-2.2.4.so
319 4001f000-40135000 r-xp 00000000 03:0c 45494   /lib/libc-2.2.4.so
320 40135000-4013e000 rw-p 00115000 03:0c 45494   /lib/libc-2.2.4.so
321 4013e000-40142000 rw-p 00000000 00:00 0
322 bffff000-c0000000 rwxp 00000000 00:00 0
323 .ft
324 .fi
325
326 where "address" is the address space in the process that it occupies,
327 "perms" is a set of permissions:
328
329 .nf
330 .in +5
331 r = read
332 w = write
333 x = execute
334 s = shared
335 p = private (copy on write)
336 .fi
337 .in
338
339 "offset" is the offset into the file/whatever, "dev" is the device
340 (major:minor), and "inode" is the inode on that device.
341 0 indicates that no inode is associated with the memory region,
342 as the case would be with BSS (uninitialized data).
343
344 Under Linux 2.0 there is no field giving pathname.
345 .TP
346 .I /proc/[pid]/mem
347 This file can be used to access the pages of a process's memory through
348 .BR open (2),
349 .BR read (2),
350 and
351 .BR lseek (2).
352 .TP
353 .IR /proc/[pid]/mountinfo " (since Linux 2.6.26)"
354 .\" This info adapted from Documentation/filesystems/proc.txt
355 This file contains information about mount points.
356 It contains lines of the form:
357 .nf
358 .ft CW
359
360 36 35 98:0 /mnt1 /mnt2 rw,noatime master:1 - ext3 /dev/root rw,errors=continue
361 (1)(2)(3)   (4)   (5)      (6)      (7)   (8) (9)   (10)         (11)
362 .ft
363 .fi
364 .IP
365 The numbers in parentheses are labels for the descriptions below:
366 .RS 7
367 .TP 5
368 (1)
369 mount ID: unique identifier of the mount (may be reused after
370 .BR umount (2)).
371 .TP
372 (2)
373 parent ID: ID of parent mount (or of self for the top of the mount tree).
374 .TP
375 (3)
376 major:minor: value of
377 .I st_dev
378 for files on file system (see
379 .BR stat (2)).
380 .TP
381 (4)
382 root: root of the mount within the file system.
383 .TP
384 (5)
385 mount point: mount point relative to the process's root.
386 .TP
387 (6)
388 mount options: per-mount options.
389 .TP
390 (7)
391 optional fields: zero or more fields of the form "tag[:value]".
392 .TP
393 (8)
394 separator: marks the end of the optional fields.
395 .TP
396 (9)
397 file system type: name of file system in the form "type[.subtype]".
398 .TP
399 (10)
400 mount source: file system-specific information or "none".
401 .TP
402 (11)
403 super options: per-super block options.
404 .RE
405 .IP
406 Parsers should ignore all unrecognized optional fields.
407 Currently the possible optional fields are:
408 .RS 12
409 .TP 18
410 shared:X
411 mount is shared in peer group X
412 .TP
413 master:X
414 mount is slave to peer group X
415 .TP
416 propagate_from:X
417 mount is slave and receives propagation from peer group X (*)
418 .TP
419 unbindable
420 mount is unbindable
421 .RE
422 .IP
423 (*) X is the closest dominant peer group under the process's root.
424 If X is the immediate master of the mount,
425 or if there is no dominant peer group under the same root,
426 then only the "master:X" field is present
427 and not the "propagate_from:X" field.
428
429 For more information on mount propagation see:
430 .I Documentation/filesystems/sharedsubtree.txt
431 in the kernel source tree.
432 .TP
433 .IR /proc/[pid]/mounts " (since Linux 2.4.19)"
434 This is a list of all the file systems currently mounted in the
435 process's mount namespace.
436 The format of this file is documented in
437 .BR fstab (5).
438 Since kernel version 2.6.15, this file is pollable:
439 after opening the file for reading, a change in this file
440 (i.e., a file system mount or unmount) causes
441 .BR select (2)
442 to mark the file descriptor as readable, and
443 .BR poll (2)
444 and
445 .BR epoll_wait (2)
446 mark the file as having an error condition.
447 .TP
448 .IR /proc/[pid]/mountstats " (since Linux 2.6.17)"
449 This file exports information (statistics, configuration information)
450 about the mount points in the process's name space.
451 Lines in this file have the form:
452 .nf
453
454 device /dev/sda7 mounted on /home with fstype ext3 [statistics]
455 (       1      )            ( 2 )             (3 ) (4)
456 .fi
457 .IP
458 The fields in each line are:
459 .RS 7
460 .TP 5
461 (1)
462 The name of the mounted device
463 (or "nodevice" if there is no corresponding device).
464 .TP
465 (2)
466 The mount point within the file system tree.
467 .TP
468 (3)
469 The file system type.
470 .TP
471 (4)
472 Optional statistics and configuration information.
473 Currently (as at Linux 2.6.26), only NFS file systems export
474 information via this field.
475 .RE
476 .IP
477 This file is only readable by the owner of the process.
478 .TP
479 .IR /proc/[pid]/numa_maps " (since Linux 2.6.14)"
480 See
481 .BR numa (7).
482 .TP
483 .IR /proc/[pid]/oom_adj " (since Linux 2.6.11)"
484 This file can be used to adjust the score used to select which process
485 should be killed in an out-of-memory (OOM) situation.
486 The kernel uses this value for a bit-shift operation of the process's
487 .IR oom_score
488 value:
489 valid values are in the range \-16 to +15,
490 plus the special value \-17,
491 which disables OOM-killing altogether for this process.
492 A positive score increases the likelihood of this
493 process being killed by the OOM-killer;
494 a negative score decreases the likelihood.
495 The default value for this file is 0;
496 a new process inherits its parent's
497 .I oom_adj
498 setting.
499 A process must be privileged
500 .RB ( CAP_SYS_RESOURCE )
501 to update this file.
502 .TP
503 .IR /proc/[pid]/oom_score " (since Linux 2.6.11)"
504 .\" See mm/oom_kill.c::badness() in the 2.6.25 sources
505 This file displays the current score that the kernel gives to
506 this process for the purpose of selecting a process
507 for the OOM-killer.
508 A higher score means that the process is more likely to be
509 selected by the OOM-killer.
510 The basis for this score is the amount of memory used by the process,
511 with increases (+) or decreases (\-) for factors including:
512 .\" See mm/oom_kill.c::badness() in the 2.6.25 sources
513 .RS
514 .IP * 2
515 whether the process creates a lot of children using
516 .BR fork (2)
517 (+);
518 .IP *
519 whether the process has been running a long time,
520 or has used a lot of CPU time (\-);
521 .IP *
522 whether the process has a low nice value (i.e., > 0) (+);
523 .IP *
524 whether the process is privileged (\-); and
525 .\" More precisely, if it has CAP_SYS_ADMIN or CAP_SYS_RESOURCE
526 .IP *
527 whether the process is making direct hardware access (\-).
528 .\" More precisely, if it has CAP_SYS_RAWIO
529 .RE
530 .IP
531 The
532 .I oom_score
533 also reflects the bit-shift adjustment specified by the
534 .I oom_adj
535 setting for the process.
536 .\" FIXME Describe /proc/[pid]/pagemap
537 .\"       Added in 2.6.25
538 .\"       CONFIG_PROC_PAGE_MONITOR
539 .TP
540 .I /proc/[pid]/root
541 UNIX and Linux support the idea of a per-process root of the
542 file system, set by the
543 .BR chroot (2)
544 system call.
545 This file is a symbolic link that points to the process's
546 root directory, and behaves as exe, fd/*, etc. do.
547
548 .\" The following was still true as at kernel 2.6.13
549 In a multithreaded process, the contents of this symbolic link
550 are not available if the main thread has already terminated
551 (typically by calling
552 .BR pthread_exit (3)).
553 .\" FIXME Describe /proc/[pid]/seccomp
554 .\"       Added in 2.6.12
555 .\" FIXME Describe /proc/[pid]/sessionid
556 .\"       Added in 2.6.25; read-only; only readable by real UID
557 .\"       CONFIG_AUDITSYSCALL
558 .\" FIXME Describe /proc/[pid]/sched
559 .\"       Added in 2.6.23
560 .\"       CONFIG_SCHED_DEBUG, and additional fields if CONFIG_SCHEDSTATS
561 .\"       Displays various scheduling parameters
562 .\"       This file can be written, to reset stats
563 .\" FIXME Describe /proc/[pid]/schedstats and
564 .\"       /proc/[pid]/task/[tid]/schedstats
565 .\"       Added in 2.6.9
566 .\"       CONFIG_SCHEDSTATS
567 .TP
568 .IR /proc/[pid]/smaps " (since Linux 2.6.14)"
569 .\"       CONFIG_PROC_PAGE_MONITOR
570 This file shows memory consumption for each of the process's mappings.
571 For each of mappings there is a series of lines such as the following:
572 .in +4n
573 .nf
574
575 08048000-080bc000 r-xp 00000000 03:02 13130      /bin/bash
576 Size:               464 kB
577 Rss:                424 kB
578 Shared_Clean:       424 kB
579 Shared_Dirty:         0 kB
580 Private_Clean:        0 kB
581 Private_Dirty:        0 kB
582
583 .fi
584 .in
585 The first of these lines shows the same information as is displayed
586 for the mapping in
587 .IR /proc/[pid]/maps .
588 The remaining lines show the size of the mapping,
589 the amount of the mapping that is currently resident in RAM,
590 the number of clean and dirty shared pages in the mapping,
591 and the number of clean and dirty private pages in the mapping.
592
593 This file is only present if the
594 .B CONFIG_MMU
595 kernel configuration
596 option is enabled.
597 .TP
598 .I /proc/[pid]/stat
599 Status information about the process.
600 This is used by
601 .BR ps (1).
602 It is defined in
603 .IR /usr/src/linux/fs/proc/array.c "."
604
605 The fields, in order, with their proper
606 .BR scanf (3)
607 format specifiers, are:
608 .RS
609 .TP 12
610 \fIpid\fP %d
611 The process ID.
612 .TP
613 \fIcomm\fP %s
614 The filename of the executable, in parentheses.
615 This is visible whether or not the executable is swapped out.
616 .TP
617 \fIstate\fP %c
618 One character from the string "RSDZTW" where R is running, S is
619 sleeping in an interruptible wait, D is waiting in uninterruptible
620 disk sleep, Z is zombie, T is traced or stopped (on a signal),
621 and W is paging.
622 .TP
623 \fIppid\fP %d
624 The PID of the parent.
625 .TP
626 \fIpgrp\fP %d
627 The process group ID of the process.
628 .TP
629 \fIsession\fP %d
630 The session ID of the process.
631 .TP
632 \fItty_nr\fP %d
633 The controlling terminal of the process.
634 (The minor device number is contained in the combination of bits
635 31 to 20 and 7 to 0;
636 the major device number is in bits 15 to 8.)
637 .TP
638 \fItpgid\fP %d
639 .\" This field and following, up to and including wchan added 0.99.1
640 The ID of the foreground process group of the controlling
641 terminal of the process.
642 .TP
643 \fIflags\fP %u (%lu before Linux 2.6.22)
644 The kernel flags word of the process.
645 For bit meanings,
646 see the PF_* defines in
647 .IR <linux/sched.h> .
648 Details depend on the kernel version.
649 .TP
650 \fIminflt\fP %lu
651 The number of minor faults the process has made which have not
652 required loading a memory page from disk.
653 .TP
654 .\" field 11
655 \fIcminflt\fP %lu
656 The number of minor faults that the process's
657 waited-for children have made.
658 .TP
659 \fImajflt\fP %lu
660 The number of major faults the process has made which have
661 required loading a memory page from disk.
662 .TP
663 \fIcmajflt\fP %lu
664 The number of major faults that the process's
665 waited-for children have made.
666 .TP
667 \fIutime\fP %lu
668 Amount of time that this process has been scheduled in user mode,
669 measured in clock ticks (divide by
670 .IR sysconf(_SC_CLK_TCK) .
671 This includes guest time, \fIguest_time\fP
672 (time spent running a virtual CPU, see below),
673 so that applications that are not aware of the guest time field
674 do not lose that time from their calculations.
675 .TP
676 \fIstime\fP %lu
677 Amount of time that this process has been scheduled in kernel mode,
678 measured in clock ticks (divide by
679 .IR sysconf(_SC_CLK_TCK) .
680 .TP
681 \fIcutime\fP %ld
682 Amount of time that this process's
683 waited-for children have been scheduled in user mode,
684 measured in clock ticks (divide by
685 .IR sysconf(_SC_CLK_TCK) .
686 (See also
687 .BR times (2).)
688 This includes guest time, \fIcguest_time\fP
689 (time spent running a virtual CPU, see below).
690 .TP
691 \fIcstime\fP %ld
692 Amount of time that this process's
693 waited-for children have been scheduled in kernel mode,
694 measured in clock ticks (divide by
695 .IR sysconf(_SC_CLK_TCK) .
696 .TP
697 \fIpriority\fP %ld
698 (Explanation for Linux 2.6)
699 For processes running a real-time scheduling policy
700 .RI ( policy
701 below; see
702 .BR sched_setscheduler (2)),
703 this is the negated scheduling priority, minus one;
704 that is, a number in the range \-2 to \-100,
705 corresponding to real-time priorities 1 to 99.
706 For processes running under a non-real-time scheduling policy,
707 this is the raw nice value
708 .RB ( setpriority (2))
709 as represented in the kernel.
710 The kernel stores nice values as numbers
711 in the range 0 (high) to 39 (low),
712 corresponding to the user-visible nice range of \-20 to 19.
713
714 Before Linux 2.6, this was a scaled value based on
715 the scheduler weighting given to this process.
716 .\" And back in kernel 1.2 days things were different again.
717 .TP
718 \fInice\fP %ld
719 The nice value (see
720 .BR setpriority (2)),
721 a value in the range 19 (low priority) to \-20 (high priority).
722 .\" Back in kernel 1.2 days things were different.
723 .TP
724 .\" .TP
725 .\" \fIcounter\fP %ld
726 .\" The current maximum size in jiffies of the process's next timeslice,
727 .\" or what is currently left of its current timeslice, if it is the
728 .\" currently running process.
729 .\" .TP
730 .\" \fItimeout\fP %u
731 .\" The time in jiffies of the process's next timeout.
732 .\" timeout was removed sometime around 2.1/2.2
733 \fInum_threads\fP %ld
734 Number of threads in this process (since Linux 2.6).
735 Before kernel 2.6, this field was hard coded to 0 as a placeholder
736 for an earlier removed field.
737 .TP
738 .\" field 21
739 \fIitrealvalue\fP %ld
740 The time in jiffies before the next
741 .B SIGALRM
742 is sent to the process due to an interval timer.
743 Since kernel 2.6.17, this field is no longer maintained,
744 and is hard coded as 0.
745 .TP
746 \fIstarttime\fP %llu (was %lu before Linux 2.6)
747 The time in jiffies the process started after system boot.
748 .TP
749 \fIvsize\fP %lu
750 Virtual memory size in bytes.
751 .TP
752 \fIrss\fP %ld
753 Resident Set Size: number of pages the process has in real memory.
754 This is just the pages which
755 count toward text, data, or stack space.
756 This does not include pages
757 which have not been demand-loaded in, or which are swapped out.
758 .TP
759 \fIrsslim\fP %lu
760 Current soft limit in bytes on the rss of the process;
761 see the description of
762 .B RLIMIT_RSS
763 in
764 .BR getpriority (2).
765 .TP
766 \fIstartcode\fP %lu
767 The address above which program text can run.
768 .TP
769 \fIendcode\fP %lu
770 The address below which program text can run.
771 .TP
772 \fIstartstack\fP %lu
773 The address of the start (i.e., bottom) of the stack.
774 .TP
775 \fIkstkesp\fP %lu
776 The current value of ESP (stack pointer), as found in the
777 kernel stack page for the process.
778 .TP
779 \fIkstkeip\fP %lu
780 The current EIP (instruction pointer).
781 .TP
782 .\" field 31
783 \fIsignal\fP %lu
784 The bitmap of pending signals, displayed as a decimal number.
785 Obsolete, because it does not provide information on real-time signals; use
786 .I /proc/[pid]/status
787 instead.
788 .TP
789 \fIblocked\fP %lu
790 The bitmap of blocked signals, displayed as a decimal number.
791 Obsolete, because it does not provide information on real-time signals; use
792 .I /proc/[pid]/status
793 instead.
794 .TP
795 \fIsigignore\fP %lu
796 The bitmap of ignored signals, displayed as a decimal number.
797 Obsolete, because it does not provide information on real-time signals; use
798 .I /proc/[pid]/status
799 instead.
800 .TP
801 \fIsigcatch\fP %lu
802 The bitmap of caught signals, displayed as a decimal number.
803 Obsolete, because it does not provide information on real-time signals; use
804 .I /proc/[pid]/status
805 instead.
806 .TP
807 \fIwchan\fP %lu
808 This is the "channel" in which the process is waiting.
809 It is the
810 address of a system call, and can be looked up in a namelist if you
811 need a textual name.
812 (If you have an up-to-date
813 .IR /etc/psdatabase ,
814 then
815 try \fIps \-l\fP to see the WCHAN field in action.)
816 .TP
817 \fInswap\fP %lu
818 .\" nswap was added in 2.0
819 Number of pages swapped (not maintained).
820 .TP
821 \fIcnswap\fP %lu
822 .\" cnswap was added in 2.0
823 Cumulative \fInswap\fP for child processes (not maintained).
824 .TP
825 \fIexit_signal\fP %d (since Linux 2.1.22)
826 Signal to be sent to parent when we die.
827 .TP
828 \fIprocessor\fP %d (since Linux 2.2.8)
829 CPU number last executed on.
830 .TP
831 \fIrt_priority\fP %u (since Linux 2.5.19; was %lu before Linux 2.6.22)
832 Real-time scheduling priority, a number in the range 1 to 99 for
833 processes scheduled under a real-time policy,
834 or 0, for non-real-time processes (see
835 .BR sched_setscheduler (2)).
836 .TP
837 .\" field 41
838 \fIpolicy\fP %u (since Linux 2.5.19; was %lu before Linux 2.6.22)
839 Scheduling policy (see
840 .BR sched_setscheduler (2)).
841 Decode using the SCHED_* constants in
842 .IR linux/sched.h .
843 .TP
844 \fIdelayacct_blkio_ticks\fP %llu (since Linux 2.6.18)
845 Aggregated block I/O delays, measured in clock ticks (centiseconds).
846 .TP
847 \fIguest_time\fP %lu (since Linux 2.6.24)
848 Guest time of the process (time spent running a virtual CPU
849 for a guest operating system), measured in clock ticks (divide by
850 .IR sysconf(_SC_CLK_TCK) .
851 .TP
852 \fIcguest_time\fP %ld (since Linux 2.6.24)
853 Guest time of the process's children, measured in clock ticks (divide by
854 .IR sysconf(_SC_CLK_TCK) .
855 .RE
856 .TP
857 .I /proc/[pid]/statm
858 Provides information about memory usage, measured in pages.
859 The columns are:
860 .in +4n
861 .nf
862
863 size       total program size
864            (same as VmSize in \fI/proc/[pid]/status\fP)
865 resident   resident set size
866            (same as VmRSS in \fI/proc/[pid]/status\fP)
867 share      shared pages (from shared mappings)
868 text       text (code)
869 .\" (not including libs; broken, includes data segment)
870 lib        library (unused in Linux 2.6)
871 data       data + stack
872 .\" (including libs; broken, includes library text)
873 dt         dirty pages (unused in Linux 2.6)
874 .fi
875 .in
876 .TP
877 .I /proc/[pid]/status
878 Provides much of the information in
879 .I /proc/[pid]/stat
880 and
881 .I /proc/[pid]/statm
882 in a format that's easier for humans to parse.
883 Here's an example:
884 .in +4n
885 .nf
886
887 .RB "$" " cat /proc/$$/status"
888 Name:   bash
889 State:  S (sleeping)
890 Tgid:   3515
891 Pid:    3515
892 PPid:   3452
893 TracerPid:      0
894 Uid:    1000    1000    1000    1000
895 Gid:    100     100     100     100
896 FDSize: 256
897 Groups: 16 33 100
898 VmPeak:     9136 kB
899 VmSize:     7896 kB
900 VmLck:         0 kB
901 VmHWM:      7572 kB
902 VmRSS:      6316 kB
903 VmData:     5224 kB
904 VmStk:        88 kB
905 VmExe:       572 kB
906 VmLib:      1708 kB
907 VmPTE:        20 kB
908 Threads:        1
909 SigQ:   0/3067
910 SigPnd: 0000000000000000
911 ShdPnd: 0000000000000000
912 SigBlk: 0000000000010000
913 SigIgn: 0000000000384004
914 SigCgt: 000000004b813efb
915 CapInh: 0000000000000000
916 CapPrm: 0000000000000000
917 CapEff: 0000000000000000
918 CapBnd: ffffffffffffffff
919 Cpus_allowed:   00000001
920 Cpus_allowed_list:      0
921 Mems_allowed:   1
922 Mems_allowed_list:      0
923 voluntary_ctxt_switches:        150
924 nonvoluntary_ctxt_switches:     545
925 .fi
926 .in
927 .IP
928 The fields are as follows:
929 .RS
930 .IP * 2
931 .IR Name :
932 Command run by this process.
933 .IP *
934 .IR State :
935 Current state of the process.  One of
936 "R (running)",
937 "S (sleeping)",
938 "D (disk sleep)",
939 "T (stopped)",
940 "T (tracing stop)",
941 "Z (zombie)",
942 or
943 "X (dead)".
944 .IP *
945 .IR Tgid :
946 Thread group ID (i.e., Process ID).
947 .IP *
948 .IR Pid :
949 Thread ID (see
950 .BR gettid (2)).
951 .IP *
952 .IR TracerPid :
953 PID of process tracing this process (0 if not being traced).
954 .IP *
955 .IR Uid ", " Gid :
956 Real, effective, saved set, and file system UIDs (GIDs).
957 .IP *
958 .IR FDSize :
959 Number of file descriptor slots currently allocated.
960 .IP *
961 .IR Groups :
962 Supplementary group list.
963 .IP *
964 .IR VmPeak :
965 Peak virtual memory size.
966 .IP *
967 .IR VmSize :
968 Virtual memory size.
969 .IP *
970 .IR VmLck :
971 Locked memory size.
972 .IP *
973 .IR VmHWM :
974 Peak resident set size ("high water mark").
975 .IP *
976 .IR VmRSS :
977 Resident set size.
978 .IP *
979 .IR VmData ", " VmStk ", " VmExe :
980 Size of data, stack, and text segments.
981 .IP *
982 .IR VmLib :
983 Shared library code size.
984 .IP *
985 .IR VmPTE :
986 Page table entries size (since Linux 2.6.10).
987 .IP *
988 .IR Threads :
989 Number of threads in process containing this thread.
990 .IP *
991 .IR SigPnd ", " ShdPnd :
992 Number of signals pending for thread and for process as a whole (see
993 .BR pthreads (7)
994 and
995 .BR signal (7)).
996 .IP *
997 .IR SigBlk ", " SigIgn ", " SigCgt :
998 Masks indicating signals being blocked, ignored, and caught (see
999 .BR signal (7)).
1000 .IP *
1001 .IR CapInh ", " CapPrm ", " CapEff :
1002 Masks of capabilities enabled in inheritable, permitted, and effective sets
1003 (see
1004 .BR capabilities (7)).
1005 .IP *
1006 .IR CapBnd :
1007 Capability Bounding set
1008 (since kernel 2.6.26, see
1009 .BR capabilities (7)).
1010 .IP *
1011 .IR Cpus_allowed :
1012 Mask of CPUs on which this process may run
1013 (since Linux 2.6.24, see
1014 .BR cpuset (7)).
1015 .IP *
1016 .IR Cpus_allowed_list :
1017 Same as previous, but in "list format"
1018 (since Linux 2.6.26, see
1019 .BR cpuset (7)).
1020 .IP *
1021 .IR Mems_allowed :
1022 Mask of memory nodes allowed to this process
1023 (since Linux 2.6.24, see
1024 .BR cpuset (7)).
1025 .IP *
1026 .IR Mems_allowed_list :
1027 Same as previous, but in "list format"
1028 (since Linux 2.6.26, see
1029 .BR cpuset (7)).
1030 .IP *
1031 .IR voluntary_context_switches ", " nonvoluntary_context_switches :
1032 Number of voluntary and involuntary context switches (since Linux 2.6.23).
1033 .RE
1034 .TP
1035 .IR /proc/[pid]/task " (since Linux 2.6.0-test6)"
1036 This is a directory that contains one subdirectory
1037 for each thread in the process.
1038 The name of each subdirectory is the numerical thread ID
1039 .RI ( [tid] )
1040 of the thread (see
1041 .BR gettid (2)).
1042 Within each of these subdirectories, there is a set of
1043 files with the same names and contents as under the
1044 .I /proc/[pid]
1045 directories.
1046 For attributes that are shared by all threads, the contents for
1047 each of the files under the
1048 .I task/[tid]
1049 subdirectories will be the same as in the corresponding
1050 file in the parent
1051 .I /proc/[pid]
1052 directory
1053 (e.g., in a multithreaded process, all of the
1054 .I task/[tid]/cwd
1055 files will have the same value as the
1056 .I /proc/[pid]/cwd
1057 file in the parent directory, since all of the threads in a process
1058 share a working directory).
1059 For attributes that are distinct for each thread,
1060 the corresponding files under
1061 .I task/[tid]
1062 may have different values (e.g., various fields in each of the
1063 .I task/[tid]/status
1064 files may be different for each thread).
1065
1066 .\" The following was still true as at kernel 2.6.13
1067 In a multithreaded process, the contents of the
1068 .I /proc/[pid]/task
1069 directory are not available if the main thread has already terminated
1070 (typically by calling
1071 .BR pthread_exit (3)).
1072 .TP
1073 .I /proc/apm
1074 Advanced power management version and battery information when
1075 .B CONFIG_APM
1076 is defined at kernel compilation time.
1077 .TP
1078 .I /proc/bus
1079 Contains subdirectories for installed busses.
1080 .TP
1081 .I /proc/bus/pccard
1082 Subdirectory for PCMCIA devices when
1083 .B CONFIG_PCMCIA
1084 is set at kernel compilation time.
1085 .TP
1086 .I /proc/bus/pccard/drivers
1087 .TP
1088 .I /proc/bus/pci
1089 Contains various bus subdirectories and pseudo-files containing
1090 information about PCI busses, installed devices, and device
1091 drivers.
1092 Some of these files are not ASCII.
1093 .TP
1094 .I /proc/bus/pci/devices
1095 Information about PCI devices.
1096 They may be accessed through
1097 .BR lspci (8)
1098 and
1099 .BR setpci (8).
1100 .TP
1101 .I /proc/cmdline
1102 Arguments passed to the Linux kernel at boot time.
1103 Often done via a boot manager such as
1104 .BR lilo (8)
1105 or
1106 .BR grub (8).
1107 .TP
1108 .IR /proc/config.gz " (since Linux 2.6)"
1109 This file exposes the configuration options that were used
1110 to build the currently running kernel,
1111 in the same format as they would be shown in the
1112 .I .config
1113 file that resulted when configuring the kernel (using
1114 .IR "make xconfig" ,
1115 .IR "make config" ,
1116 or similar).
1117 The file contents are compressed; view or search them using
1118 .BR zcat (1),
1119 .BR zgrep (1),
1120 etc.
1121 As long as no changes have been made to the following file,
1122 the contents of
1123 .I /proc/config.gz
1124 are the same as those provided by :
1125 .in +4n
1126 .nf
1127
1128 cat /lib/modules/$(uname -r)/build/.config
1129 .fi
1130 .in
1131 .IP
1132 .I /proc/config.gz
1133 is only provided if the kernel is configured with
1134 .BR CONFIG_IKCONFIG_PROC .
1135 .TP
1136 .I /proc/cpuinfo
1137 This is a collection of CPU and system architecture dependent items,
1138 for each supported architecture a different list.
1139 Two common entries are \fIprocessor\fP which gives CPU number and
1140 \fIbogomips\fP; a system constant that is calculated
1141 during kernel initialization.
1142 SMP machines have information for
1143 each CPU.
1144 .TP
1145 .I /proc/devices
1146 Text listing of major numbers and device groups.
1147 This can be used by MAKEDEV scripts for consistency with the kernel.
1148 .TP
1149 .IR /proc/diskstats " (since Linux 2.5.69)"
1150 This file contains disk I/O statistics for each disk device.
1151 See the kernel source file
1152 .I Documentation/iostats.txt
1153 for further information.
1154 .TP
1155 .I /proc/dma
1156 This is a list of the registered \fIISA\fP DMA (direct memory access)
1157 channels in use.
1158 .TP
1159 .I /proc/driver
1160 Empty subdirectory.
1161 .TP
1162 .I /proc/execdomains
1163 List of the execution domains (ABI personalities).
1164 .TP
1165 .I /proc/fb
1166 Frame buffer information when
1167 .B CONFIG_FB
1168 is defined during kernel compilation.
1169 .TP
1170 .I /proc/filesystems
1171 A text listing of the file systems which are supported by the kernel,
1172 namely file systems which were compiled into the kernel or whose kernel
1173 modules are currently loaded.
1174 (See also
1175 .BR filesystems (5).)
1176 If a file system is marked with "nodev",
1177 this means that it does not require a block device to be mounted
1178 (e.g., virtual file system, network file system).
1179
1180 Incidentally, this file may be used by
1181 .BR mount (8)
1182 when no file system is specified and it didn't manage to determine the
1183 file system type.
1184 Then file systems contained in this file are tried
1185 (excepted those that are marked with "nodev").
1186 .TP
1187 .I /proc/fs
1188 Empty subdirectory.
1189 .TP
1190 .I /proc/ide
1191 This directory
1192 exists on systems with the IDE bus.
1193 There are directories for each IDE channel and attached device.
1194 Files include:
1195
1196 .in +4n
1197 .nf
1198 cache              buffer size in KB
1199 capacity           number of sectors
1200 driver             driver version
1201 geometry           physical and logical geometry
1202 identify           in hexadecimal
1203 media              media type
1204 model              manufacturer's model number
1205 settings           drive settings
1206 smart_thresholds   in hexadecimal
1207 smart_values       in hexadecimal
1208 .fi
1209 .in
1210
1211 The
1212 .BR hdparm (8)
1213 utility provides access to this information in a friendly format.
1214 .TP
1215 .I /proc/interrupts
1216 This is used to record the number of interrupts per CPU per IO device.
1217 Since Linux 2.6.24,
1218 for the i386 and x86_64 architectures, at least, this also includes
1219 interrupts internal to the system (that is, not associated with a device
1220 as such), such as NMI (nonmaskable interrupt), LOC (local timer interrupt),
1221 and for SMP systems, TLB (TLB flush interrupt), RES (rescheduling
1222 interrupt), CAL (remote function call interrupt), and possibly others.
1223 Very easy to read formatting, done in ASCII.
1224 .TP
1225 .I /proc/iomem
1226 I/O memory map in Linux 2.4.
1227 .TP
1228 .I /proc/ioports
1229 This is a list of currently registered Input-Output port regions that
1230 are in use.
1231 .TP
1232 .IR /proc/kallsyms " (since Linux 2.5.71)"
1233 This holds the kernel exported symbol definitions used by the
1234 .BR modules (X)
1235 tools to dynamically link and bind loadable modules.
1236 In Linux 2.5.47 and earlier, a similar file with slightly different syntax
1237 was named
1238 .IR ksyms .
1239 .TP
1240 .I /proc/kcore
1241 This file represents the physical memory of the system and is stored
1242 in the ELF core file format.
1243 With this pseudo-file, and an unstripped
1244 kernel
1245 .RI ( /usr/src/linux/vmlinux )
1246 binary, GDB can be used to
1247 examine the current state of any kernel data structures.
1248
1249 The total length of the file is the size of physical memory (RAM) plus
1250 4KB.
1251 .TP
1252 .I /proc/kmsg
1253 This file can be used instead of the
1254 .BR syslog (2)
1255 system call to read kernel messages.
1256 A process must have superuser
1257 privileges to read this file, and only one process should read this
1258 file.
1259 This file should not be read if a syslog process is running
1260 which uses the
1261 .BR syslog (2)
1262 system call facility to log kernel messages.
1263
1264 Information in this file is retrieved with the
1265 .BR dmesg (1)
1266 program.
1267 .TP
1268 .IR /proc/ksyms " (Linux 1.1.23-2.5.47)"
1269 See
1270 .IR /proc/kallsyms .
1271 .TP
1272 .I /proc/loadavg
1273 The first three fields in this file are load average figures
1274 giving the number of jobs in the run queue (state R)
1275 or waiting for disk I/O (state D) averaged over 1, 5, and 15 minutes.
1276 They are the same as the load average numbers given by
1277 .BR uptime (1)
1278 and other programs.
1279 The fourth field consists of two numbers separated by a slash (/).
1280 The first of these is the number of currently executing kernel
1281 scheduling entities (processes, threads);
1282 this will be less than or equal to the number of CPUs.
1283 The value after the slash is the number of kernel scheduling entities
1284 that currently exist on the system.
1285 The fifth field is the PID of the process that was most
1286 recently created on the system.
1287 .TP
1288 .I /proc/locks
1289 This file shows current file locks
1290 .RB ( flock "(2) and " fcntl (2))
1291 and leases
1292 .RB ( fcntl (2)).
1293 .TP
1294 .IR /proc/malloc " (only up to and including Linux 2.2)"
1295 .\" It looks like this only ever did something back in 1.0 days
1296 This file is only present if
1297 .B CONFIG_DEBUG_MALLOC
1298 was defined during compilation.
1299 .TP
1300 .I /proc/meminfo
1301 This file reports statistics about memory usage on the system.
1302 It is used by
1303 .BR free (1)
1304 to report the amount of free and used memory (both physical and swap)
1305 on the system as well as the shared memory and buffers used by the
1306 kernel.
1307 .TP
1308 .I /proc/modules
1309 A text list of the modules that have been loaded by the system.
1310 See also
1311 .BR lsmod (8).
1312 .TP
1313 .I /proc/mounts
1314 Before kernel 2.4.19, this file was a list
1315 of all the file systems currently mounted on the system.
1316 With the introduction of per-process mount namespaces in
1317 Linux 2.4.19, this file became a link to
1318 .IR /proc/self/mounts ,
1319 which lists the mount points of the process's own mount namespace.
1320 The format of this file is documented in
1321 .BR fstab (5).
1322 .TP
1323 .I /proc/mtrr
1324 Memory Type Range Registers.
1325 See the kernel source file
1326 .I Documentation/mtrr.txt
1327 for details.
1328 .TP
1329 .I /proc/net
1330 various net pseudo-files, all of which give the status of some part of
1331 the networking layer.
1332 These files contain ASCII structures and are,
1333 therefore, readable with
1334 .BR cat (1).
1335 However, the standard
1336 .BR netstat (8)
1337 suite provides much cleaner access to these files.
1338 .TP
1339 .I /proc/net/arp
1340 This holds an ASCII readable dump of the kernel ARP table used for
1341 address resolutions.
1342 It will show both dynamically learned and preprogrammed ARP entries.
1343 The format is:
1344
1345 .nf
1346 .ft CW
1347 .in 8n
1348 IP address     HW type   Flags     HW address          Mask   Device
1349 192.168.0.50   0x1       0x2       00:50:BF:25:68:F3   *      eth0
1350 192.168.0.250  0x1       0xc       00:00:00:00:00:00   *      eth0
1351 .ft
1352 .fi
1353 .in
1354
1355 Here "IP address" is the IPv4 address of the machine and the "HW type"
1356 is the hardware type of the address from RFC\ 826.
1357 The flags are the internal
1358 flags of the ARP structure (as defined in
1359 .IR /usr/include/linux/if_arp.h )
1360 and
1361 the "HW address" is the data link layer mapping for that IP address if
1362 it is known.
1363 .TP
1364 .I /proc/net/dev
1365 The dev pseudo-file contains network device status information.
1366 This gives
1367 the number of received and sent packets, the number of errors and
1368 collisions
1369 and other basic statistics.
1370 These are used by the
1371 .BR ifconfig (8)
1372 program to report device status.
1373 The format is:
1374
1375 .nf
1376 .ft CW
1377 .in 1n
1378 Inter-|   Receive                                                |  Transmit
1379  face |bytes    packets errs drop fifo frame compressed multicast|bytes    packets errs drop fifo colls carrier compressed
1380     lo: 2776770   11307    0    0    0     0          0         0  2776770   11307    0    0    0     0       0          0
1381   eth0: 1215645    2751    0    0    0     0          0         0  1782404    4324    0    0    0   427       0          0
1382   ppp0: 1622270    5552    1    0    0     0          0         0   354130    5669    0    0    0     0       0          0
1383   tap0:    7714      81    0    0    0     0          0         0     7714      81    0    0    0     0       0          0
1384 .in
1385 .ft
1386 .fi
1387 .\" .TP
1388 .\" .I /proc/net/ipx
1389 .\" No information.
1390 .\" .TP
1391 .\" .I /proc/net/ipx_route
1392 .\" No information.
1393 .TP
1394 .I /proc/net/dev_mcast
1395 Defined in
1396 .IR /usr/src/linux/net/core/dev_mcast.c :
1397 .nf
1398 .in +5
1399 indx interface_name  dmi_u dmi_g dmi_address
1400 2    eth0            1     0     01005e000001
1401 3    eth1            1     0     01005e000001
1402 4    eth2            1     0     01005e000001
1403 .in
1404 .fi
1405 .TP
1406 .I /proc/net/igmp
1407 Internet Group Management Protocol.
1408 Defined in
1409 .IR /usr/src/linux/net/core/igmp.c .
1410 .TP
1411 .I /proc/net/rarp
1412 This file uses the same format as the
1413 .I arp
1414 file and contains the current reverse mapping database used to provide
1415 .BR rarp (8)
1416 reverse address lookup services.
1417 If RARP is not configured into the
1418 kernel,
1419 this file will not be present.
1420 .TP
1421 .I /proc/net/raw
1422 Holds a dump of the RAW socket table.
1423 Much of the information is not of
1424 use
1425 apart from debugging.
1426 The "sl" value is the kernel hash slot for the
1427 socket,
1428 the "local_address" is the local address and protocol number pair.
1429 \&"St" is
1430 the internal status of the socket.
1431 The "tx_queue" and "rx_queue" are the
1432 outgoing and incoming data queue in terms of kernel memory usage.
1433 The "tr", "tm\->when", and "rexmits" fields are not used by RAW.
1434 The "uid"
1435 field holds the effective UID of the creator of the socket.
1436 .\" .TP
1437 .\" .I /proc/net/route
1438 .\" No information, but looks similar to
1439 .\" .BR route (8).
1440 .TP
1441 .I /proc/net/snmp
1442 This file holds the ASCII data needed for the IP, ICMP, TCP, and UDP
1443 management
1444 information bases for an SNMP agent.
1445 .TP
1446 .I /proc/net/tcp
1447 Holds a dump of the TCP socket table.
1448 Much of the information is not
1449 of use apart from debugging.
1450 The "sl" value is the kernel hash slot
1451 for the socket, the "local_address" is the local address and port number pair.
1452 The "rem_address" is the remote address and port number pair
1453 (if connected).
1454 \&"St" is the internal status of the socket.
1455 The "tx_queue" and "rx_queue" are the
1456 outgoing and incoming data queue in terms of kernel memory usage.
1457 The "tr", "tm\->when", and "rexmits" fields hold internal information of
1458 the kernel socket state and are only useful for debugging.
1459 The "uid"
1460 field holds the effective UID of the creator of the socket.
1461 .TP
1462 .I /proc/net/udp
1463 Holds a dump of the UDP socket table.
1464 Much of the information is not of
1465 use apart from debugging.
1466 The "sl" value is the kernel hash slot for the
1467 socket, the "local_address" is the local address and port number pair.
1468 The "rem_address" is the remote address and port number pair
1469 (if connected). "St" is the internal status of the socket.
1470 The "tx_queue" and "rx_queue" are the outgoing and incoming data queue
1471 in terms of kernel memory usage.
1472 The "tr", "tm\->when", and "rexmits" fields
1473 are not used by UDP.
1474 The "uid"
1475 field holds the effective UID of the creator of the socket.
1476 The format is:
1477
1478 .nf
1479 .ft CW
1480 .in 1n
1481 sl  local_address rem_address   st tx_queue rx_queue tr rexmits  tm\->when uid
1482  1: 01642C89:0201 0C642C89:03FF 01 00000000:00000001 01:000071BA 00000000 0
1483  1: 00000000:0801 00000000:0000 0A 00000000:00000000 00:00000000 6F000100 0
1484  1: 00000000:0201 00000000:0000 0A 00000000:00000000 00:00000000 00000000 0
1485 .in
1486 .ft
1487 .fi
1488 .TP
1489 .I /proc/net/unix
1490 Lists the UNIX domain sockets present within the system and their
1491 status.
1492 The format is:
1493 .nf
1494 .sp .5
1495 .ft CW
1496 Num RefCount Protocol Flags    Type St Path
1497  0: 00000002 00000000 00000000 0001 03
1498  1: 00000001 00000000 00010000 0001 01 /dev/printer
1499 .ft
1500 .sp .5
1501 .fi
1502
1503 Here "Num" is the kernel table slot number, "RefCount" is the number
1504 of users of the socket, "Protocol" is currently always 0, "Flags"
1505 represent the internal kernel flags holding the status of the
1506 socket.
1507 Currently, type is always "1" (UNIX domain datagram sockets are
1508 not yet supported in the kernel).
1509 \&"St" is the internal state of the
1510 socket and Path is the bound path (if any) of the socket.
1511 .TP
1512 .I /proc/partitions
1513 Contains major and minor numbers of each partition as well as number
1514 of blocks and partition name.
1515 .TP
1516 .I /proc/pci
1517 This is a listing of all PCI devices found during kernel initialization
1518 and their configuration.
1519
1520 This file has been deprecated in favor of a new
1521 .I /proc
1522 interface for PCI
1523 .RI ( /proc/bus/pci ).
1524 It became optional in Linux 2.2 (available with
1525 .B CONFIG_PCI_OLD_PROC
1526 set at kernel compilation).
1527 It became once more nonoptionally enabled in Linux 2.4.
1528 Next, it was deprecated in Linux 2.6 (still available with
1529 .B CONFIG_PCI_LEGACY_PROC
1530 set), and finally removed altogether since Linux 2.6.17.
1531 .\" FIXME /proc/sched_debug
1532 .\" .TP
1533 .\" .IR /proc/sched_debug " (since Linux 2.6.23)"
1534 .\" See also /proc/[pid]/sched
1535 .TP
1536 .I /proc/scsi
1537 A directory with the
1538 .I scsi
1539 mid-level pseudo-file and various SCSI low-level
1540 driver directories,
1541 which contain a file for each SCSI host in this system, all of
1542 which give the status of some part of the SCSI IO subsystem.
1543 These files contain ASCII structures and are, therefore, readable with
1544 .BR cat (1).
1545
1546 You can also write to some of the files to reconfigure the subsystem or
1547 switch certain features on or off.
1548 .TP
1549 .I /proc/scsi/scsi
1550 This is a listing of all SCSI devices known to the kernel.
1551 The listing is similar to the one seen during bootup.
1552 scsi currently supports only the \fIadd-single-device\fP command which
1553 allows root to add a hotplugged device to the list of known devices.
1554
1555 The command
1556 .in +4n
1557 .nf
1558
1559 echo \(aqscsi add-single-device 1 0 5 0\(aq > /proc/scsi/scsi
1560
1561 .fi
1562 .in
1563 will cause
1564 host scsi1 to scan on SCSI channel 0 for a device on ID 5 LUN 0.
1565 If there
1566 is already a device known on this address or the address is invalid, an
1567 error will be returned.
1568 .TP
1569 .I /proc/scsi/[drivername]
1570 \fI[drivername]\fP can currently be NCR53c7xx, aha152x, aha1542, aha1740,
1571 aic7xxx, buslogic, eata_dma, eata_pio, fdomain, in2000, pas16, qlogic,
1572 scsi_debug, seagate, t128, u15-24f, ultrastore, or wd7000.
1573 These directories show up for all drivers that registered at least one
1574 SCSI HBA.
1575 Every directory contains one file per registered host.
1576 Every host-file is named after the number the host was assigned during
1577 initialization.
1578
1579 Reading these files will usually show driver and host configuration,
1580 statistics, etc.
1581
1582 Writing to these files allows different things on different hosts.
1583 For example, with the \fIlatency\fP and \fInolatency\fP commands,
1584 root can switch on and off command latency measurement code in the
1585 eata_dma driver.
1586 With the \fIlockup\fP and \fIunlock\fP commands,
1587 root can control bus lockups simulated by the scsi_debug driver.
1588 .TP
1589 .I /proc/self
1590 This directory refers to the process accessing the
1591 .I /proc
1592 file system,
1593 and is identical to the
1594 .I /proc
1595 directory named by the process ID of the same process.
1596 .TP
1597 .I /proc/slabinfo
1598 Information about kernel caches.
1599 Since Linux 2.6.16 this file is only present if the
1600 .B CONFIG_SLAB
1601 kernel configuration option is enabled.
1602 The columns in
1603 .I /proc/slabinfo
1604 are:
1605 .in +4n
1606 .nf
1607
1608 cache-name
1609 num-active-objs
1610 total-objs
1611 object-size
1612 num-active-slabs
1613 total-slabs
1614 num-pages-per-slab
1615 .fi
1616 .in
1617
1618 See
1619 .BR slabinfo (5)
1620 for details.
1621 .TP
1622 .I /proc/stat
1623 kernel/system statistics.
1624 Varies with architecture.
1625 Common
1626 entries include:
1627 .RS
1628 .TP
1629 \fIcpu  3357 0 4313 1362393\fP
1630 The amount of time, measured in units of
1631 USER_HZ (1/100ths of a second on most architectures, use
1632 .IR sysconf(_SC_CLK_TCK)
1633 to obtain the right value),
1634 .\" 1024 on Alpha and ia64
1635 that the system spent in user mode,
1636 user mode with low priority (nice), system mode, and the
1637 idle task, respectively.
1638 .\" FIXME Actually, the following info about the /proc/stat 'cpu' field
1639 .\"       does not seem to be quite right (at least in 2.6.12)
1640 The last value should be USER_HZ times the
1641 second entry in the uptime pseudo-file.
1642
1643 In Linux 2.6 this line includes three additional columns:
1644 .I iowait
1645 \- time waiting for I/O to complete (since 2.5.41);
1646 .I irq
1647 \- time servicing interrupts (since 2.6.0-test4);
1648 .I softirq
1649 \- time servicing softirqs (since 2.6.0-test4).
1650
1651 Since Linux 2.6.11, there is an eighth column,
1652 .I steal
1653 \- stolen time, which is the time spent in other operating systems when
1654 running in a virtualized environment
1655
1656 Since Linux 2.6.24, there is a ninth column,
1657 .IR guest ,
1658 which is the time spent running a virtual CPU for guest
1659 operating systems under the control of the Linux kernel.
1660 .\" See Changelog entry for 5e84cfde51cf303d368fcb48f22059f37b3872de
1661 .TP
1662 \fIpage 5741 1808\fP
1663 The number of pages the system paged in and the number that were paged
1664 out (from disk).
1665 .TP
1666 \fIswap 1 0\fP
1667 The number of swap pages that have been brought in and out.
1668 .TP
1669 .\" FIXME The following is not the full picture for the 'intr' of
1670 .\"       /proc/stat on 2.6:
1671 \fIintr 1462898\fP
1672 This line shows counts of interrupts serviced since boot time,
1673 for each of the possible system interrupts.
1674 The first column is the total of all interrupts serviced;
1675 each subsequent column is the total for a particular interrupt.
1676 .TP
1677 \fIdisk_io: (2,0):(31,30,5764,1,2) (3,0):\fP...
1678 (major,disk_idx):(noinfo, read_io_ops, blks_read, write_io_ops, blks_written)
1679 .br
1680 (Linux 2.4 only)
1681 .TP
1682 \fIctxt 115315\fP
1683 The number of context switches that the system underwent.
1684 .TP
1685 \fIbtime 769041601\fP
1686 boot time, in seconds since the Epoch, 1970-01-01 00:00:00 +0000 (UTC).
1687 .TP
1688 \fIprocesses 86031\fP
1689 Number of forks since boot.
1690 .TP
1691 \fIprocs_running 6\fP
1692 Number of processes in runnable state.
1693 (Linux 2.5.45 onward.)
1694 .TP
1695 \fIprocs_blocked 2\fP
1696 Number of processes blocked waiting for I/O to complete.
1697 (Linux 2.5.45 onward.)
1698 .RE
1699 .TP
1700 .I /proc/swaps
1701 Swap areas in use.
1702 See also
1703 .BR swapon (8).
1704 .TP
1705 .I /proc/sys
1706 This directory (present since 1.3.57) contains a number of files
1707 and subdirectories corresponding to kernel variables.
1708 These variables can be read and sometimes modified using
1709 the \fI/proc\fP file system, and the (deprecated)
1710 .BR sysctl (2)
1711 system call.
1712 .TP
1713 .IR /proc/sys/abi " (since Linux 2.4.10)"
1714 This directory may contain files with application binary information.
1715 .\" On some systems, it is not present.
1716 See the kernel source file
1717 .I Documentation/sysctl/abi.txt
1718 for more information.
1719 .TP
1720 .I /proc/sys/debug
1721 This directory may be empty.
1722 .TP
1723 .I /proc/sys/dev
1724 This directory contains device-specific information (e.g.,
1725 .IR dev/cdrom/info ).
1726 On
1727 some systems, it may be empty.
1728 .TP
1729 .I /proc/sys/fs
1730 This directory contains the files and subdirectories for kernel variables
1731 related to file systems.
1732 .TP
1733 .I /proc/sys/fs/binfmt_misc
1734 Documentation for files in this directory can be found
1735 in the kernel sources in
1736 .IR Documentation/binfmt_misc.txt .
1737 .TP
1738 .IR /proc/sys/fs/dentry-state " (since Linux 2.2)"
1739 This file contains information about the status of the
1740 directory cache (dcache).
1741 The file contains six numbers,
1742 .IR nr_dentry ", " nr_unused ", " age_limit " (age in seconds), "
1743 .I want_pages
1744 (pages requested by system) and two dummy values.
1745 .RS
1746 .IP * 2
1747 .I nr_dentry
1748 is the number of allocated dentries (dcache entries).
1749 This field is unused in Linux 2.2.
1750 .IP *
1751 .I nr_unused
1752 is the number of unused dentries.
1753 .IP *
1754 .I age_limit
1755 .\" looks like this is unused in kernels 2.2 to 2.6
1756 is the age in seconds after which dcache entries
1757 can be reclaimed when memory is short.
1758 .IP *
1759 .I want_pages
1760 .\" looks like this is unused in kernels 2.2 to 2.6
1761 is nonzero when the kernel has called shrink_dcache_pages() and the
1762 dcache isn't pruned yet.
1763 .RE
1764 .TP
1765 .I /proc/sys/fs/dir-notify-enable
1766 This file can be used to disable or enable the
1767 .I dnotify
1768 interface described in
1769 .BR fcntl (2)
1770 on a system-wide basis.
1771 A value of 0 in this file disables the interface,
1772 and a value of 1 enables it.
1773 .TP
1774 .I /proc/sys/fs/dquot-max
1775 This file shows the maximum number of cached disk quota entries.
1776 On some (2.4) systems, it is not present.
1777 If the number of free cached disk quota entries is very low and
1778 you have some awesome number of simultaneous system users,
1779 you might want to raise the limit.
1780 .TP
1781 .I /proc/sys/fs/dquot-nr
1782 This file shows the number of allocated disk quota
1783 entries and the number of free disk quota entries.
1784 .TP
1785 .IR /proc/sys/fs/epoll " (since Linux 2.6.28)"
1786 This directory contains the file
1787 .IR max_user_watches ,
1788 which can be used to limit the amount of kernel memory consumed by the
1789 .I epoll
1790 interface.
1791 For further details, see
1792 .BR epoll (7).
1793 .TP
1794 .I /proc/sys/fs/file-max
1795 This file defines
1796 a system-wide limit on the number of open files for all processes.
1797 (See also
1798 .BR setrlimit (2),
1799 which can be used by a process to set the per-process limit,
1800 .BR RLIMIT_NOFILE ,
1801 on the number of files it may open.)
1802 If you get lots
1803 of error messages about running out of file handles,
1804 try increasing this value:
1805 .br
1806
1807 .br
1808 .nf
1809 .ft CW
1810 echo 100000 > /proc/sys/fs/file-max
1811 .fi
1812 .ft
1813
1814 The kernel constant
1815 .B NR_OPEN
1816 imposes an upper limit on the value that may be placed in
1817 .IR file-max .
1818
1819 If you increase
1820 .IR /proc/sys/fs/file-max ","
1821 be sure to increase
1822 .I /proc/sys/fs/inode-max
1823 to 3-4 times the new
1824 value of
1825 .IR /proc/sys/fs/file-max ","
1826 or you will run out of inodes.
1827 .TP
1828 .I /proc/sys/fs/file-nr
1829 This (read-only) file gives the number of files presently opened.
1830 It contains three numbers: the number of allocated file handles;
1831 the number of free file handles; and the maximum number of file handles.
1832 The kernel allocates file handles dynamically, but it
1833 doesn't free them again.
1834 If the number of allocated files is close to the
1835 maximum, you should consider increasing the maximum.
1836 When the number of free file handles is
1837 large, you've encountered a peak in your usage of file
1838 handles and you probably don't need to increase the maximum.
1839 .TP
1840 .I /proc/sys/fs/inode-max
1841 This file contains the maximum number of in-memory inodes.
1842 On some (2.4) systems, it may not be present.
1843 This value should be 3-4 times larger
1844 than the value in
1845 .IR file-max ,
1846 since \fIstdin\fP, \fIstdout\fP
1847 and network sockets also need an inode to handle them.
1848 When you regularly run out of inodes, you need to increase this value.
1849 .TP
1850 .I /proc/sys/fs/inode-nr
1851 This file contains the first two values from
1852 .IR inode-state .
1853 .TP
1854 .I /proc/sys/fs/inode-state
1855 This file
1856 contains seven numbers:
1857 .IR nr_inodes ,
1858 .IR nr_free_inodes ,
1859 .IR preshrink ,
1860 and four dummy values.
1861 .I nr_inodes
1862 is the number of inodes the system has allocated.
1863 This can be slightly more than
1864 .I inode-max
1865 because Linux allocates them one page full at a time.
1866 .I nr_free_inodes
1867 represents the number of free inodes.
1868 .I preshrink
1869 is nonzero when the
1870 .I nr_inodes
1871 >
1872 .I inode-max
1873 and the system needs to prune the inode list instead of allocating more.
1874 .TP
1875 .IR /proc/sys/fs/inotify " (since Linux 2.6.13)"
1876 This directory contains files
1877 .IR max_queued_events ", " max_user_instances ", and " max_user_watches ,
1878 that can be used to limit the amount of kernel memory consumed by the
1879 .I inotify
1880 interface.
1881 For further details, see
1882 .BR inotify (7).
1883 .TP
1884 .I /proc/sys/fs/lease-break-time
1885 This file specifies the grace period that the kernel grants to a process
1886 holding a file lease
1887 .RB ( fcntl (2))
1888 after it has sent a signal to that process notifying it
1889 that another process is waiting to open the file.
1890 If the lease holder does not remove or downgrade the lease within
1891 this grace period, the kernel forcibly breaks the lease.
1892 .TP
1893 .I /proc/sys/fs/leases-enable
1894 This file can be used to enable or disable file leases
1895 .RB ( fcntl (2))
1896 on a system-wide basis.
1897 If this file contains the value 0, leases are disabled.
1898 A nonzero value enables leases.
1899 .TP
1900 .IR /proc/sys/fs/mqueue " (since Linux 2.6.6)"
1901 This directory contains files
1902 .IR msg_max ", " msgsize_max ", and " queues_max ,
1903 controlling the resources used by POSIX message queues.
1904 See
1905 .BR mq_overview (7)
1906 for details.
1907 .TP
1908 .IR /proc/sys/fs/overflowgid " and " /proc/sys/fs/overflowuid
1909 These files
1910 allow you to change the value of the fixed UID and GID.
1911 The default is 65534.
1912 Some file systems only support 16-bit UIDs and GIDs, although in Linux
1913 UIDs and GIDs are 32 bits.
1914 When one of these file systems is mounted
1915 with writes enabled, any UID or GID that would exceed 65535 is translated
1916 to the overflow value before being written to disk.
1917 .TP
1918 .IR /proc/sys/fs/pipe-max-size " (since Linux 2.6.35)"
1919 The value in this file defines an upper limit for raising the capacity
1920 of a pipe using the
1921 .BR fcntl (2)
1922 .B F_SETPIPE_SZ
1923 operation.
1924 This limit applies only to unprivileged processes.
1925 The default value for this file is 1,048,576.
1926 The value assigned to this file may be rounded upward,
1927 to reflect the value actually employed for a convenient implementation.
1928 To determine the rounded-up value,
1929 display the contents of this file after assigning a value to it.
1930 The minimum value that can be assigned to this file is the system page size.
1931 .TP
1932 .IR /proc/sys/fs/suid_dumpable " (since Linux 2.6.13)"
1933 .\" The following is based on text from Documentation/sysctl/kernel.txt
1934 The value in this file determines whether core dump files are
1935 produced for set-user-ID or otherwise protected/tainted binaries.
1936 Three different integer values can be specified:
1937 .sp
1938 \fI0\ (default)\fP
1939 This provides the traditional (pre-Linux 2.6.13) behavior.
1940 A core dump will not be produced for a process which has
1941 changed credentials (by calling
1942 .BR seteuid (2),
1943 .BR setgid (2),
1944 or similar, or by executing a set-user-ID or set-group-ID program)
1945 or whose binary does not have read permission enabled.
1946 .sp
1947 \fI1\ ("debug")\fP
1948 All processes dump core when possible.
1949 The core dump is owned by the file system user ID of the dumping process
1950 and no security is applied.
1951 This is intended for system debugging situations only.
1952 Ptrace is unchecked.
1953 .sp
1954 \fI2\ ("suidsafe")\fP
1955 Any binary which normally would not be dumped (see "0" above)
1956 is dumped readable by root only.
1957 This allows the user to remove the core dump file but not to read it.
1958 For security reasons core dumps in this mode will not overwrite one
1959 another or other files.
1960 This mode is appropriate when administrators are
1961 attempting to debug problems in a normal environment.
1962 .TP
1963 .I /proc/sys/fs/super-max
1964 This file
1965 controls the maximum number of superblocks, and
1966 thus the maximum number of mounted file systems the kernel
1967 can have.
1968 You only need to increase
1969 .I super-max
1970 if you need to mount more file systems than the current value in
1971 .I super-max
1972 allows you to.
1973 .TP
1974 .I /proc/sys/fs/super-nr
1975 This file
1976 contains the number of file systems currently mounted.
1977 .TP
1978 .I /proc/sys/kernel
1979 This directory contains files controlling a range of kernel parameters,
1980 as described below.
1981 .TP
1982 .I /proc/sys/kernel/acct
1983 This file
1984 contains three numbers:
1985 .IR highwater ,
1986 .IR lowwater ,
1987 and
1988 .IR frequency .
1989 If BSD-style process accounting is enabled these values control
1990 its behavior.
1991 If free space on file system where the log lives goes below
1992 .I lowwater
1993 percent accounting suspends.
1994 If free space gets above
1995 .I highwater
1996 percent accounting resumes.
1997 .I frequency
1998 determines
1999 how often the kernel checks the amount of free space (value is in
2000 seconds).
2001 Default values are 4, 2 and 30.
2002 That is, suspend accounting if 2% or less space is free; resume it
2003 if 4% or more space is free; consider information about amount of free space
2004 valid for 30 seconds.
2005 .TP
2006 .IR /proc/sys/kernel/cap-bound " (from Linux 2.2 to 2.6.24)"
2007 This file holds the value of the kernel
2008 .I "capability bounding set"
2009 (expressed as a signed decimal number).
2010 This set is ANDed against the capabilities permitted to a process
2011 during
2012 .BR execve (2).
2013 Starting with Linux 2.6.25,
2014 the system-wide capability bounding set disappeared,
2015 and was replaced by a per-thread bounding set; see
2016 .BR capabilities (7).
2017 .TP
2018 .I /proc/sys/kernel/core_pattern
2019 See
2020 .BR core (5).
2021 .TP
2022 .I /proc/sys/kernel/core_uses_pid
2023 See
2024 .BR core (5).
2025 .TP
2026 .I /proc/sys/kernel/ctrl-alt-del
2027 This file
2028 controls the handling of Ctrl-Alt-Del from the keyboard.
2029 When the value in this file is 0, Ctrl-Alt-Del is trapped and
2030 sent to the
2031 .BR init (8)
2032 program to handle a graceful restart.
2033 When the value is greater than zero, Linux's reaction to a Vulcan
2034 Nerve Pinch (tm) will be an immediate reboot, without even
2035 syncing its dirty buffers.
2036 Note: when a program (like dosemu) has the keyboard in "raw"
2037 mode, the ctrl-alt-del is intercepted by the program before it
2038 ever reaches the kernel tty layer, and it's up to the program
2039 to decide what to do with it.
2040 .TP
2041 .I /proc/sys/kernel/hotplug
2042 This file
2043 contains the path for the hotplug policy agent.
2044 The default value in this file is
2045 .IR /sbin/hotplug .
2046 .TP
2047 .IR /proc/sys/kernel/domainname " and " /proc/sys/kernel/hostname
2048 can be used to set the NIS/YP domainname and the
2049 hostname of your box in exactly the same way as the commands
2050 .BR domainname (1)
2051 and
2052 .BR hostname (1),
2053 that is:
2054
2055 .in +4n
2056 .nf
2057 .RB "#" " echo \(aqdarkstar\(aq > /proc/sys/kernel/hostname"
2058 .RB "#" " echo \(aqmydomain\(aq > /proc/sys/kernel/domainname"
2059 .fi
2060 .in
2061
2062 has the same effect as
2063
2064 .in +4n
2065 .nf
2066 .RB "#" " hostname \(aqdarkstar\(aq"
2067 .RB "#" " domainname \(aqmydomain\(aq"
2068 .fi
2069 .in
2070
2071 Note, however, that the classic darkstar.frop.org has the
2072 hostname "darkstar" and DNS (Internet Domain Name Server)
2073 domainname "frop.org", not to be confused with the NIS (Network
2074 Information Service) or YP (Yellow Pages) domainname.
2075 These two
2076 domain names are in general different.
2077 For a detailed discussion
2078 see the
2079 .BR hostname (1)
2080 man page.
2081 .TP
2082 .I /proc/sys/kernel/htab-reclaim
2083 (PowerPC only) If this file is set to a nonzero value,
2084 the PowerPC htab
2085 (see kernel file
2086 .IR Documentation/powerpc/ppc_htab.txt )
2087 is pruned
2088 each time the system hits the idle loop.
2089 .TP
2090 .I /proc/sys/kernel/l2cr
2091 (PowerPC only) This file
2092 contains a flag that controls the L2 cache of G3 processor
2093 boards.
2094 If 0, the cache is disabled.
2095 Enabled if nonzero.
2096 .TP
2097 .I /proc/sys/kernel/modprobe
2098 This file contains the path for the kernel module loader.
2099 The default value is
2100 .IR /sbin/modprobe .
2101 The file is only present if the kernel is built with the
2102 .B CONFIG_KMOD
2103 option enabled.
2104 It is described by the kernel source file
2105 .I Documentation/kmod.txt
2106 (only present in kernel 2.4 and earlier).
2107 .TP
2108 .I /proc/sys/kernel/msgmax
2109 This file defines
2110 a system-wide limit specifying the maximum number of bytes in
2111 a single message written on a System V message queue.
2112 .TP
2113 .I /proc/sys/kernel/msgmni
2114 This file defines the system-wide limit on the number of
2115 message queue identifiers.
2116 (This file is only present in Linux 2.4 onward.)
2117 .TP
2118 .I /proc/sys/kernel/msgmnb
2119 This file defines a system-wide parameter used to initialize the
2120 .I msg_qbytes
2121 setting for subsequently created message queues.
2122 The
2123 .I msg_qbytes
2124 setting specifies the maximum number of bytes that may be written to the
2125 message queue.
2126 .TP
2127 .IR /proc/sys/kernel/ostype " and " /proc/sys/kernel/osrelease
2128 These files
2129 give substrings of
2130 .IR /proc/version .
2131 .TP
2132 .IR /proc/sys/kernel/overflowgid " and " /proc/sys/kernel/overflowuid
2133 These files duplicate the files
2134 .I /proc/sys/fs/overflowgid
2135 and
2136 .IR /proc/sys/fs/overflowuid .
2137 .TP
2138 .I /proc/sys/kernel/panic
2139 This file gives read/write access to the kernel variable
2140 .IR panic_timeout .
2141 If this is zero, the kernel will loop on a panic; if nonzero
2142 it indicates that the kernel should autoreboot after this number
2143 of seconds.
2144 When you use the
2145 software watchdog device driver, the recommended setting is 60.
2146 .TP
2147 .IR /proc/sys/kernel/panic_on_oops " (since Linux 2.5.68)"
2148 This file controls the kernel's behavior when an oops
2149 or BUG is encountered.
2150 If this file contains 0, then the system
2151 tries to continue operation.
2152 If it contains 1, then the system
2153 delays a few seconds (to give klogd time to record the oops output)
2154 and then panics.
2155 If the
2156 .I /proc/sys/kernel/panic
2157 file is also nonzero then the machine will be rebooted.
2158 .TP
2159 .IR /proc/sys/kernel/pid_max " (since Linux 2.5.34)"
2160 This file specifies the value at which PIDs wrap around
2161 (i.e., the value in this file is one greater than the maximum PID).
2162 The default value for this file, 32768,
2163 results in the same range of PIDs as on earlier kernels.
2164 On 32-bit platforms, 32768 is the maximum value for
2165 .IR pid_max .
2166 On 64-bit systems,
2167 .I pid_max
2168 can be set to any value up to 2^22
2169 .RB ( PID_MAX_LIMIT ,
2170 approximately 4 million).
2171 .\" Prior to 2.6.10, pid_max could also be raised above 32768 on 32-bit
2172 .\" platforms, but this broke /proc/[pid]
2173 .\" See http://marc.theaimsgroup.com/?l=linux-kernel&m=109513010926152&w=2
2174 .TP
2175 .IR /proc/sys/kernel/powersave-nap " (PowerPC only)"
2176 This file contains a flag.
2177 If set, Linux-PPC will use the "nap" mode of
2178 powersaving,
2179 otherwise the "doze" mode will be used.
2180 .TP
2181 .I /proc/sys/kernel/printk
2182 The four values in this file are
2183 .IR console_loglevel ,
2184 .IR default_message_loglevel ,
2185 .IR minimum_console_level ,
2186 and
2187 .IR default_console_loglevel .
2188 These values influence
2189 .I printk()
2190 behavior when printing or logging error messages.
2191 See
2192 .BR syslog (2)
2193 for more info on the different loglevels.
2194 Messages with a higher priority than
2195 .I console_loglevel
2196 will be printed to the console.
2197 Messages without an explicit priority will be printed with priority
2198 .IR default_message_level .
2199 .I minimum_console_loglevel
2200 is the minimum (highest) value to which
2201 .I console_loglevel
2202 can be set.
2203 .I default_console_loglevel
2204 is the default value for
2205 .IR console_loglevel .
2206 .TP
2207 .IR /proc/sys/kernel/pty " (since Linux 2.6.4)"
2208 This directory contains two files relating to the number of UNIX 98
2209 pseudoterminals (see
2210 .BR pts (4))
2211 on the system.
2212 .TP
2213 .I /proc/sys/kernel/pty/max
2214 This file defines the maximum number of pseudoterminals.
2215 .TP
2216 .I /proc/sys/kernel/pty/nr
2217 This read-only file
2218 indicates how many pseudoterminals are currently in use.
2219 .TP
2220 .I /proc/sys/kernel/random
2221 This directory
2222 contains various parameters controlling the operation of the file
2223 .IR /dev/random .
2224 See
2225 .BR random (4)
2226 for further information.
2227 .TP
2228 .I /proc/sys/kernel/real-root-dev
2229 This file is documented in the kernel source file
2230 .IR Documentation/initrd.txt .
2231 .TP
2232 .IR /proc/sys/kernel/reboot-cmd " (Sparc only) "
2233 This file seems to be a way to give an argument to the SPARC
2234 ROM/Flash boot loader.
2235 Maybe to tell it what to do after
2236 rebooting?
2237 .TP
2238 .I /proc/sys/kernel/rtsig-max
2239 (Only in kernels up to and including 2.6.7; see
2240 .BR setrlimit (2))
2241 This file can be used to tune the maximum number
2242 of POSIX real-time (queued) signals that can be outstanding
2243 in the system.
2244 .TP
2245 .I /proc/sys/kernel/rtsig-nr
2246 (Only in kernels up to and including 2.6.7.)
2247 This file shows the number POSIX real-time signals currently queued.
2248 .TP
2249 .IR /proc/sys/kernel/sem " (since Linux 2.4)"
2250 This file contains 4 numbers defining limits for System V IPC semaphores.
2251 These fields are, in order:
2252 .RS
2253 .IP SEMMSL 8
2254 The maximum semaphores per semaphore set.
2255 .IP SEMMNS 8
2256 A system-wide limit on the number of semaphores in all semaphore sets.
2257 .IP SEMOPM 8
2258 The maximum number of operations that may be specified in a
2259 .BR semop (2)
2260 call.
2261 .IP SEMMNI 8
2262 A system-wide limit on the maximum number of semaphore identifiers.
2263 .RE
2264 .TP
2265 .I /proc/sys/kernel/sg-big-buff
2266 This file
2267 shows the size of the generic SCSI device (sg) buffer.
2268 You can't tune it just yet, but you could change it at
2269 compile time by editing
2270 .I include/scsi/sg.h
2271 and changing
2272 the value of
2273 .BR SG_BIG_BUFF .
2274 However, there shouldn't be any reason to change this value.
2275 .TP
2276 .I /proc/sys/kernel/shmall
2277 This file
2278 contains the system-wide limit on the total number of pages of
2279 System V shared memory.
2280 .TP
2281 .I /proc/sys/kernel/shmmax
2282 This file
2283 can be used to query and set the run-time limit
2284 on the maximum (System V IPC) shared memory segment size that can be
2285 created.
2286 Shared memory segments up to 1GB are now supported in the
2287 kernel.
2288 This value defaults to
2289 .BR SHMMAX .
2290 .TP
2291 .I /proc/sys/kernel/shmmni
2292 (available in Linux 2.4 and onward)
2293 This file
2294 specifies the system-wide maximum number of System V shared memory
2295 segments that can be created.
2296 .TP
2297 .I /proc/sys/kernel/sysrq
2298 This file controls the functions allowed to be invoked by the SysRq key.
2299 By default,
2300 the file contains 1 meaning that every possible SysRq request is allowed
2301 (in older kernel versions, SysRq was disabled by default,
2302 and you were required to specifically enable it at run-time,
2303 but this is not the case any more).
2304 Possible values in this file are:
2305
2306    0 - disable sysrq completely
2307    1 - enable all functions of sysrq
2308   >1 - bitmask of allowed sysrq functions, as follows:
2309           2 - enable control of console logging level
2310           4 - enable control of keyboard (SAK, unraw)
2311           8 - enable debugging dumps of processes etc.
2312          16 - enable sync command
2313          32 - enable remount read-only
2314          64 - enable signalling of processes (term, kill, oom-kill)
2315         128 - allow reboot/poweroff
2316         256 - allow nicing of all real-time tasks
2317
2318 This file is only present if the
2319 .B CONFIG_MAGIC_SYSRQ
2320 kernel configuration option is enabled.
2321 For further details see the kernel source file
2322 .IR Documentation/sysrq.txt .
2323 .TP
2324 .I /proc/sys/kernel/version
2325 This file contains a string like:
2326
2327     #5 Wed Feb 25 21:49:24 MET 1998
2328
2329 The "#5" means that
2330 this is the fifth kernel built from this source base and the
2331 date behind it indicates the time the kernel was built.
2332 .TP
2333 .IR /proc/sys/kernel/threads-max " (since Linux 2.3.11)"
2334 This file specifies the system-wide limit on the number of
2335 threads (tasks) that can be created on the system.
2336 .TP
2337 .IR /proc/sys/kernel/zero-paged " (PowerPC only) "
2338 This file
2339 contains a flag.
2340 When enabled (nonzero), Linux-PPC will pre-zero pages in
2341 the idle loop, possibly speeding up get_free_pages.
2342 .TP
2343 .I /proc/sys/net
2344 This directory contains networking stuff.
2345 Explanations for some of the files under this directory can be found in
2346 .BR tcp (7)
2347 and
2348 .BR ip (7).
2349 .TP
2350 .I /proc/sys/net/core/somaxconn
2351 This file defines a ceiling value for the
2352 .I backlog
2353 argument of
2354 .BR listen (2);
2355 see the
2356 .BR listen (2)
2357 manual page for details.
2358 .TP
2359 .I /proc/sys/proc
2360 This directory may be empty.
2361 .TP
2362 .I /proc/sys/sunrpc
2363 This directory supports Sun remote procedure call for network file system
2364 (NFS).
2365 On some systems, it is not present.
2366 .TP
2367 .I /proc/sys/vm
2368 This directory contains files for memory management tuning, buffer and
2369 cache management.
2370 .TP
2371 .IR /proc/sys/vm/drop_caches " (since Linux 2.6.16)"
2372 Writing to this file causes the kernel to drop clean caches, dentries and
2373 inodes from memory, causing that memory to become free.
2374
2375 To free pagecache, use
2376 .IR "echo 1 > /proc/sys/vm/drop_caches" ;
2377 to free dentries and inodes, use
2378 .IR "echo 2 > /proc/sys/vm/drop_caches" ;
2379 to free pagecache, dentries and inodes, use
2380 .IR "echo 3 > /proc/sys/vm/drop_caches" .
2381
2382 Because this is a nondestructive operation and dirty objects
2383 are not freeable, the
2384 user should run
2385 .BR sync (8)
2386 first.
2387 .TP
2388 .IR /proc/sys/vm/legacy_va_layout " (since Linux 2.6.9)"
2389 .\" The following is from Documentation/filesystems/proc.txt
2390 If nonzero, this disables the new 32-bit memory-mapping layout;
2391 the kernel will use the legacy (2.4) layout for all processes.
2392 .TP
2393 .IR /proc/sys/vm/memory_failure_early_kill " (since Linux 2.6.32)"
2394 .\" The following is based on the text in Documentation/sysctl/vm.txt
2395 Control how to kill processes when an uncorrected memory error
2396 (typically a 2-bit error in a memory module)
2397 that cannot be handled by the kernel
2398 is detected in the background by hardware.
2399 In some cases (like the page still having a valid copy on disk),
2400 the kernel will handle the failure
2401 transparently without affecting any applications.
2402 But if there is no other up-to-date copy of the data,
2403 it will kill processes to prevent any data corruptions from propagating.
2404
2405 The file has one of the following values:
2406 .RS
2407 .IP 1: 4
2408 Kill all processes that have the corrupted-and-not-reloadable page mapped
2409 as soon as the corruption is detected.
2410 Note this is not supported for a few types of pages, like kernel internally
2411 allocated data or the swap cache, but works for the majority of user pages.
2412 .IP 0: 4
2413 Only unmap the corrupted page from all processes and only kill a process
2414 who tries to access it.
2415 .RE
2416 .IP
2417 The kill is performed using a
2418 .B SIGBUS
2419 signal with
2420 .I si_code
2421 set to
2422 .BR BUS_MCEERR_AO .
2423 Processes can handle this if they want to; see
2424 .BR sigaction (2)
2425 for more details.
2426
2427 This feature is only active on architectures/platforms with advanced machine
2428 check handling and depends on the hardware capabilities.
2429
2430 Applications can override the
2431 .I memory_failure_early_kill
2432 setting individually with the
2433 .BR prctl (2)
2434 .B PR_MCE_KILL
2435 operation.
2436 .IP
2437 Only present if the kernel was configured with
2438 .BR CONFIG_MEMORY_FAILURE .
2439 .TP
2440 .IR /proc/sys/vm/memory_failure_recovery " (since Linux 2.6.32)"
2441 .\" The following is based on the text in Documentation/sysctl/vm.txt
2442 Enable memory failure recovery (when supported by the platform)
2443 .RS
2444 .IP 1: 4
2445 Attempt recovery.
2446 .IP 0: 4
2447 Always panic on a memory failure.
2448 .RE
2449 .IP
2450 Only present if the kernel was configured with
2451 .BR CONFIG_MEMORY_FAILURE .
2452 .TP
2453 .IR /proc/sys/vm/oom_dump_tasks " (since Linux 2.6.25)"
2454 .\" The following is from Documentation/sysctl/vm.txt
2455 Enables a system-wide task dump (excluding kernel threads) to be
2456 produced when the kernel performs an OOM-killing.
2457 The dump includes the following information
2458 for each task (thread, process):
2459 thread ID, real user ID, thread group ID (process ID),
2460 virtual memory size, resident set size,
2461 the CPU that the task is scheduled on,
2462 oom_adj score (see the description of
2463 .IR /proc/[pid]/oom_adj ),
2464 and command name.
2465 This is helpful to determine why the OOM-killer was invoked
2466 and to identify the rogue task that caused it.
2467
2468 If this contains the value zero, this information is suppressed.
2469 On very large systems with thousands of tasks,
2470 it may not be feasible to dump the memory state information for each one.
2471 Such systems should not be forced to incur a performance penalty in
2472 OOM situations when the information may not be desired.
2473
2474 If this is set to nonzero, this information is shown whenever the
2475 OOM-killer actually kills a memory-hogging task.
2476
2477 The default value is 0.
2478 .TP
2479 .IR /proc/sys/vm/oom_kill_allocating_task " (since Linux 2.6.24)"
2480 .\" The following is from Documentation/sysctl/vm.txt
2481 This enables or disables killing the OOM-triggering task in
2482 out-of-memory situations.
2483
2484 If this is set to zero, the OOM-killer will scan through the entire
2485 tasklist and select a task based on heuristics to kill.
2486 This normally selects a rogue memory-hogging task that
2487 frees up a large amount of memory when killed.
2488
2489 If this is set to nonzero, the OOM-killer simply kills the task that
2490 triggered the out-of-memory condition.
2491 This avoids a possibly expensive tasklist scan.
2492
2493 If
2494 .I /proc/sys/vm/panic_on_oom
2495 is nonzero, it takes precedence over whatever value is used in
2496 .IR /proc/sys/vm/oom_kill_allocating_task .
2497
2498 The default value is 0.
2499 .TP
2500 .I /proc/sys/vm/overcommit_memory
2501 This file contains the kernel virtual memory accounting mode.
2502 Values are:
2503 .RS
2504 .IP
2505 0: heuristic overcommit (this is the default)
2506 .br
2507 1: always overcommit, never check
2508 .br
2509 2: always check, never overcommit
2510 .RE
2511 .IP
2512 In mode 0, calls of
2513 .BR mmap (2)
2514 with
2515 .B MAP_NORESERVE
2516 are not checked, and the default check is very weak,
2517 leading to the risk of getting a process "OOM-killed".
2518 Under Linux 2.4 any nonzero value implies mode 1.
2519 In mode 2 (available since Linux 2.6), the total virtual address space
2520 on the system is limited to (SS + RAM*(r/100)),
2521 where SS is the size of the swap space, and RAM
2522 is the size of the physical memory, and r is the contents of the file
2523 .IR /proc/sys/vm/overcommit_ratio .
2524 .TP
2525 .I /proc/sys/vm/overcommit_ratio
2526 See the description of
2527 .IR /proc/sys/vm/overcommit_memory .
2528 .TP
2529 .IR /proc/sys/vm/panic_on_oom " (since Linux 2.6.18)"
2530 .\" The following is adapted from Documentation/sysctl/vm.txt
2531 This enables or disables a kernel panic in
2532 an out-of-memory situation.
2533
2534 If this file is set to the value 0,
2535 the kernel's OOM-killer will kill some rogue process.
2536 Usually, the OOM-killer is able to kill a rogue process and the
2537 system will survive.
2538
2539 If this file is set to the value 1,
2540 then the kernel normally panics when out-of-memory happens.
2541 However, if a process limits allocations to certain nodes
2542 using memory policies
2543 .RB ( mbind  (2)
2544 .BR MPOL_BIND )
2545 or cpusets
2546 .RB ( cpuset (7))
2547 and those nodes reach memory exhaustion status,
2548 one process may be killed by the OOM-killer.
2549 No panic occurs in this case:
2550 because other nodes' memory may be free,
2551 this means the system as a whole may not have reached
2552 an out-of-memory situation yet.
2553
2554 If this file is set to the value 2,
2555 the kernel always panics when an out-of-memory condition occurs.
2556
2557 The default value is 0.
2558 1 and 2 are for failover of clustering.
2559 Select either according to your policy of failover.
2560 .TP
2561 .IR /proc/sys/vm/swappiness
2562 .\" The following is from Documentation/sysctl/vm.txt
2563 The value in this file controls how aggressively the kernel will swap
2564 memory pages.
2565 Higher values increase agressiveness, lower values
2566 decrease aggressiveness.
2567 The default value is 60.
2568 .TP
2569 .IR /proc/sysrq-trigger " (since Linux 2.4.21)"
2570 Writing a character to this file triggers the same SysRq function as
2571 typing ALT-SysRq-<character> (see the description of
2572 .IR /proc/sys/kernel/sysrq ).
2573 This file is normally only writable by
2574 .IR root .
2575 For further details see the kernel source file
2576 .IR Documentation/sysrq.txt .
2577 .TP
2578 .I /proc/sysvipc
2579 Subdirectory containing the pseudo-files
2580 .IR msg ", "  sem " and "  shm "."
2581 These files list the System V Interprocess Communication (IPC) objects
2582 (respectively: message queues, semaphores, and shared memory)
2583 that currently exist on the system,
2584 providing similar information to that available via
2585 .BR ipcs (1).
2586 These files have headers and are formatted (one IPC object per line)
2587 for easy understanding.
2588 .BR svipc (7)
2589 provides further background on the information shown by these files.
2590 .TP
2591 .I /proc/tty
2592 Subdirectory containing the pseudo-files and subdirectories for
2593 tty drivers and line disciplines.
2594 .TP
2595 .I /proc/uptime
2596 This file contains two numbers: the uptime of the system (seconds),
2597 and the amount of time spent in idle process (seconds).
2598 .TP
2599 .I /proc/version
2600 This string identifies the kernel version that is currently running.
2601 It includes the contents of
2602 .IR /proc/sys/kernel/ostype ,
2603 .I /proc/sys/kernel/osrelease
2604 and
2605 .IR /proc/sys/kernel/version .
2606 For example:
2607 .nf
2608 .in -2
2609 .ft CW
2610 Linux version 1.0.9 (quinlan@phaze) #1 Sat May 14 01:51:54 EDT 1994
2611 .ft
2612 .in +2
2613 .fi
2614 .\" FIXME Document /proc/timer_list
2615 .\" .TP
2616 .\" .IR /proc/timer_list " (since Linux 2.6.21)"
2617 .\" See the 2.6.21 Change log
2618 .\" FIXME Document /proc/timer_stats
2619 .\" .TP
2620 .\" .IR /proc/timer_stats " (since Linux 2.6.21)"
2621 .\" See the 2.6.21 Change log
2622 .TP
2623 .IR /proc/vmstat " (since Linux 2.6)"
2624 This file displays various virtual memory statistics.
2625 .TP
2626 .IR /proc/zoneinfo " (since Linux 2.6.13)"
2627 This file display information about memory zones.
2628 This is useful for analyzing virtual memory behavior.
2629 .\" FIXME more should be said about /proc/zoneinfo
2630 .SH NOTES
2631 Many strings (i.e., the environment and command line) are in
2632 the internal format, with subfields terminated by null bytes (\(aq\\0\(aq),
2633 so you
2634 may find that things are more readable if you use \fIod \-c\fP or \fItr
2635 "\\000" "\\n"\fP to read them.
2636 Alternatively, \fIecho \`cat <file>\`\fP works well.
2637
2638 This manual page is incomplete, possibly inaccurate, and is the kind
2639 of thing that needs to be updated very often.
2640 .\" .SH ACKNOWLEDGEMENTS
2641 .\" The material on /proc/sys/fs and /proc/sys/kernel is closely based on
2642 .\" kernel source documentation files written by Rik van Riel.
2643 .SH "SEE ALSO"
2644 .BR cat (1),
2645 .BR dmesg (1),
2646 .BR find (1),
2647 .BR free (1),
2648 .BR ps (1),
2649 .BR tr (1),
2650 .BR uptime (1),
2651 .BR chroot (2),
2652 .BR mmap (2),
2653 .BR readlink (2),
2654 .BR syslog (2),
2655 .BR slabinfo (5),
2656 .BR hier (7),
2657 .BR time (7),
2658 .BR arp (8),
2659 .BR hdparm (8),
2660 .BR ifconfig (8),
2661 .BR init (8),
2662 .BR lsmod (8),
2663 .BR lspci (8),
2664 .BR mount (8),
2665 .BR netstat (8),
2666 .BR procinfo (8),
2667 .BR route (8)
2668 .br
2669 The kernel source files:
2670 .IR Documentation/filesystems/proc.txt ,
2671 .IR Documentation/sysctl/vm.txt