Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 1 | # |
| 2 | # For a description of the syntax of this configuration file, |
| 3 | # see scripts/kbuild/config-language.txt. |
| 4 | # |
| 5 | |
| 6 | menu "Process Utilities" |
| 7 | |
| 8 | config CONFIG_FREE |
| 9 | bool "free" |
| 10 | default n |
| 11 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 12 | free displays the total amount of free and used physical and swap |
| 13 | memory in the system, as well as the buffers used by the kernel. |
| 14 | The shared memory column should be ignored; it is obsolete. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 15 | |
Rob Landley | aa87276 | 2005-10-28 13:05:12 +0000 | [diff] [blame] | 16 | config CONFIG_FUSER |
| 17 | bool "fuser" |
| 18 | default n |
| 19 | help |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 20 | fuser lists all PIDs (Process IDs) that currently have a given |
Rob Landley | aa87276 | 2005-10-28 13:05:12 +0000 | [diff] [blame] | 21 | file open. fuser can also list all PIDs that have a given network |
| 22 | (TCP or UDP) port open. |
| 23 | |
Eric Andersen | 110ee23 | 2002-12-06 21:44:50 +0000 | [diff] [blame] | 24 | config CONFIG_KILL |
Eric Andersen | 110ee23 | 2002-12-06 21:44:50 +0000 | [diff] [blame] | 25 | bool "kill" |
| 26 | default n |
Eric Andersen | 110ee23 | 2002-12-06 21:44:50 +0000 | [diff] [blame] | 27 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 28 | The command kill sends the specified signal to the specified |
| 29 | process or process group. If no signal is specified, the TERM |
| 30 | signal is sent. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 31 | |
| 32 | config CONFIG_KILLALL |
| 33 | bool "killall" |
| 34 | default n |
| 35 | depends on CONFIG_KILL |
| 36 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 37 | killall sends a signal to all processes running any of the |
| 38 | specified commands. If no signal name is specified, SIGTERM is |
| 39 | sent. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 40 | |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 41 | config CONFIG_KILLALL5 |
| 42 | bool "killall5" |
| 43 | default n |
| 44 | depends on CONFIG_KILL |
| 45 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 46 | config CONFIG_PIDOF |
| 47 | bool "pidof" |
| 48 | default n |
| 49 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 50 | Pidof finds the process id's (pids) of the named programs. It prints |
| 51 | those id's on the standard output. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 52 | |
Bernhard Reutner-Fischer | 81c3a51 | 2005-10-06 15:37:02 +0000 | [diff] [blame] | 53 | config CONFIG_FEATURE_PIDOF_SINGLE |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 54 | bool "Enable argument for single shot (-s)" |
Bernhard Reutner-Fischer | 81c3a51 | 2005-10-06 15:37:02 +0000 | [diff] [blame] | 55 | default n |
| 56 | depends on CONFIG_PIDOF |
| 57 | help |
| 58 | Support argument '-s' for returning only the first pid found. |
| 59 | |
| 60 | config CONFIG_FEATURE_PIDOF_OMIT |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 61 | bool "Enable argument for omitting pids (-o)" |
Bernhard Reutner-Fischer | 81c3a51 | 2005-10-06 15:37:02 +0000 | [diff] [blame] | 62 | default n |
| 63 | depends on CONFIG_PIDOF |
| 64 | help |
| 65 | Support argument '-o' for omitting the given pids in output. |
| 66 | The special pid %PPID can be used to name the parent process |
| 67 | of the pidof, in other words the calling shell or shell script. |
| 68 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 69 | config CONFIG_PS |
| 70 | bool "ps" |
| 71 | default n |
| 72 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 73 | ps gives a snapshot of the current processes. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 74 | |
Bernhard Reutner-Fischer | 6d6a40c | 2005-10-04 14:31:18 +0000 | [diff] [blame] | 75 | config CONFIG_FEATURE_PS_WIDE |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 76 | bool "Enable argument for wide output (-w)" |
Bernhard Reutner-Fischer | 6d6a40c | 2005-10-04 14:31:18 +0000 | [diff] [blame] | 77 | default n |
| 78 | depends on CONFIG_PS |
| 79 | help |
| 80 | Support argument 'w' for wide output. |
| 81 | If given once, 132 chars are printed and given more than |
| 82 | one, the length is unlimited. |
| 83 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 84 | config CONFIG_RENICE |
| 85 | bool "renice" |
| 86 | default n |
| 87 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 88 | Renice alters the scheduling priority of one or more running |
| 89 | processes. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 90 | |
Mike Frysinger | d1c8ae5 | 2005-09-24 23:13:22 +0000 | [diff] [blame] | 91 | config CONFIG_BB_SYSCTL |
| 92 | bool "sysctl" |
| 93 | default n |
| 94 | help |
| 95 | Configure kernel parameters at runtime. |
| 96 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 97 | config CONFIG_TOP |
| 98 | bool "top" |
| 99 | default n |
| 100 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 101 | The top program provides a dynamic real-time view of a running |
| 102 | system. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 103 | |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 104 | config CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 105 | bool "Support showing CPU usage percentage (add 2k bytes)" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 106 | default y |
| 107 | depends on CONFIG_TOP |
| 108 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 109 | Make top display CPU usage. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 110 | |
| 111 | config CONFIG_UPTIME |
| 112 | bool "uptime" |
| 113 | default n |
| 114 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 115 | uptime gives a one line display of the current time, how long |
| 116 | the system has been running, how many users are currently logged |
| 117 | on, and the system load averages for the past 1, 5, and 15 minutes. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 118 | |
Rob Landley | aa87276 | 2005-10-28 13:05:12 +0000 | [diff] [blame] | 119 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 120 | endmenu |
| 121 | |