procps.xml 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-system-procps" role="wrap">
  8. <?dbhtml filename="procps-ng.html"?>
  9. <sect1info condition="script">
  10. <productname>procps-ng</productname>
  11. <productnumber>&procps-ng-version;</productnumber>
  12. <address>&procps-ng-url;</address>
  13. </sect1info>
  14. <title>Procps-ng-&procps-ng-version;</title>
  15. <indexterm zone="ch-system-procps">
  16. <primary sortas="a-Procps">Procps-ng</primary>
  17. </indexterm>
  18. <sect2 role="package">
  19. <title/>
  20. <para>The Procps-ng package contains programs for monitoring processes.</para>
  21. <segmentedlist>
  22. <segtitle>&buildtime;</segtitle>
  23. <segtitle>&diskspace;</segtitle>
  24. <seglistitem>
  25. <seg>&procps-ng-ch6-sbu;</seg>
  26. <seg>&procps-ng-ch6-du;</seg>
  27. </seglistitem>
  28. </segmentedlist>
  29. </sect2>
  30. <sect2 role="installation">
  31. <title>Installation of Procps-ng</title>
  32. <para>Now prepare procps-ng for compilation:</para>
  33. <screen><userinput remap="configure">./configure --prefix=/usr \
  34. --exec-prefix= \
  35. --libdir=/usr/lib \
  36. --docdir=/usr/share/doc/procps-ng-&procps-ng-version; \
  37. --disable-static \
  38. --disable-kill</userinput></screen>
  39. <variablelist>
  40. <title>The meaning of the configure options:</title>
  41. <varlistentry>
  42. <term><parameter>--disable-kill</parameter></term>
  43. <listitem>
  44. <para>This switch disables building the <command>kill</command>
  45. command that will be installed by the Util-linux package.</para>
  46. </listitem>
  47. </varlistentry>
  48. </variablelist>
  49. <para>Compile the package:</para>
  50. <screen><userinput remap="make">make</userinput></screen>
  51. <para>The test suite needs some custom modifications for LFS.
  52. Remove the test that fails when scripting does not use a tty device.
  53. To run the test suite, run the following commands:</para>
  54. <screen><userinput remap="test">sed -i -r 's|(pmap_initname)\\\$|\1|' testsuite/pmap.test/pmap.exp
  55. make check</userinput></screen>
  56. <para>Install the package:</para>
  57. <screen><userinput remap="install">make install</userinput></screen>
  58. <para>Finally, move essential libraries to a location that can be found if
  59. <filename class="directory">/usr</filename> is not mounted.</para>
  60. <screen><userinput remap="install">mv -v /usr/lib/libprocps.so.* /lib
  61. ln -sfv ../../lib/$(readlink /usr/lib/libprocps.so) /usr/lib/libprocps.so</userinput></screen>
  62. </sect2>
  63. <sect2 id="contents-procps" role="content">
  64. <title>Contents of Procps-ng</title>
  65. <segmentedlist>
  66. <segtitle>Installed programs</segtitle>
  67. <segtitle>Installed library</segtitle>
  68. <segtitle>Installed directories</segtitle>
  69. <seglistitem>
  70. <seg>free, pgrep, pidof, pkill, pmap, ps, pwdx, slabtop,
  71. sysctl, tload, top, uptime, vmstat, w, and watch</seg>
  72. <seg>libprocps.so</seg>
  73. <seg>/usr/include/proc and /usr/share/doc/procps-ng-&procps-ng-version;</seg>
  74. </seglistitem>
  75. </segmentedlist>
  76. <variablelist>
  77. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  78. <?dbfo list-presentation="list"?>
  79. <?dbhtml list-presentation="table"?>
  80. <varlistentry id="free">
  81. <term><command>free</command></term>
  82. <listitem>
  83. <para>Reports the amount of free and used memory (both physical and
  84. swap memory) in the system</para>
  85. <indexterm zone="ch-system-procps free">
  86. <primary sortas="b-free">free</primary>
  87. </indexterm>
  88. </listitem>
  89. </varlistentry>
  90. <varlistentry id="pgrep">
  91. <term><command>pgrep</command></term>
  92. <listitem>
  93. <para>Looks up processes based on their name and other attributes</para>
  94. <indexterm zone="ch-system-procps pgrep">
  95. <primary sortas="b-pgrep">pgrep</primary>
  96. </indexterm>
  97. </listitem>
  98. </varlistentry>
  99. <varlistentry id="pidof">
  100. <term><command>pidof</command></term>
  101. <listitem>
  102. <para>Reports the PIDs of the given programs</para>
  103. <indexterm zone="ch-system-procps pidof">
  104. <primary sortas="b-pidof">pidof</primary>
  105. </indexterm>
  106. </listitem>
  107. </varlistentry>
  108. <varlistentry id="pkill">
  109. <term><command>pkill</command></term>
  110. <listitem>
  111. <para>Signals processes based on their name and other attributes</para>
  112. <indexterm zone="ch-system-procps pkill">
  113. <primary sortas="b-pkill">pkill</primary>
  114. </indexterm>
  115. </listitem>
  116. </varlistentry>
  117. <varlistentry id="pmap">
  118. <term><command>pmap</command></term>
  119. <listitem>
  120. <para>Reports the memory map of the given process</para>
  121. <indexterm zone="ch-system-procps pmap">
  122. <primary sortas="b-pmap">pmap</primary>
  123. </indexterm>
  124. </listitem>
  125. </varlistentry>
  126. <varlistentry id="ps">
  127. <term><command>ps</command></term>
  128. <listitem>
  129. <para>Lists the current running processes</para>
  130. <indexterm zone="ch-system-procps ps">
  131. <primary sortas="b-ps">ps</primary>
  132. </indexterm>
  133. </listitem>
  134. </varlistentry>
  135. <varlistentry id="pwdx">
  136. <term><command>pwdx</command></term>
  137. <listitem>
  138. <para>Reports the current working directory of a process</para>
  139. <indexterm zone="ch-system-procps pwdx">
  140. <primary sortas="b-pwdx">pwdx</primary>
  141. </indexterm>
  142. </listitem>
  143. </varlistentry>
  144. <varlistentry id="slabtop">
  145. <term><command>slabtop</command></term>
  146. <listitem>
  147. <para>Displays detailed kernel slap cache information in real time</para>
  148. <indexterm zone="ch-system-procps slabtop">
  149. <primary sortas="b-slabtop">slabtop</primary>
  150. </indexterm>
  151. </listitem>
  152. </varlistentry>
  153. <varlistentry id="sysctl">
  154. <term><command>sysctl</command></term>
  155. <listitem>
  156. <para>Modifies kernel parameters at run time</para>
  157. <indexterm zone="ch-system-procps sysctl">
  158. <primary sortas="b-sysctl">sysctl</primary>
  159. </indexterm>
  160. </listitem>
  161. </varlistentry>
  162. <varlistentry id="tload">
  163. <term><command>tload</command></term>
  164. <listitem>
  165. <para>Prints a graph of the current system load average</para>
  166. <indexterm zone="ch-system-procps tload">
  167. <primary sortas="b-tload">tload</primary>
  168. </indexterm>
  169. </listitem>
  170. </varlistentry>
  171. <varlistentry id="top">
  172. <term><command>top</command></term>
  173. <listitem>
  174. <para>Displays a list of the most CPU intensive processes; it
  175. provides an ongoing look at processor activity in real time</para>
  176. <indexterm zone="ch-system-procps top">
  177. <primary sortas="b-top">top</primary>
  178. </indexterm>
  179. </listitem>
  180. </varlistentry>
  181. <varlistentry id="uptime">
  182. <term><command>uptime</command></term>
  183. <listitem>
  184. <para>Reports how long the system has been running, how many users are
  185. logged on, and the system load averages</para>
  186. <indexterm zone="ch-system-procps uptime">
  187. <primary sortas="b-uptime">uptime</primary>
  188. </indexterm>
  189. </listitem>
  190. </varlistentry>
  191. <varlistentry id="vmstat">
  192. <term><command>vmstat</command></term>
  193. <listitem>
  194. <para>Reports virtual memory statistics, giving information about
  195. processes, memory, paging, block Input/Output (IO), traps, and CPU
  196. activity</para>
  197. <indexterm zone="ch-system-procps vmstat">
  198. <primary sortas="b-vmstat">vmstat</primary>
  199. </indexterm>
  200. </listitem>
  201. </varlistentry>
  202. <varlistentry id="w">
  203. <term><command>w</command></term>
  204. <listitem>
  205. <para>Shows which users are currently logged on, where, and since
  206. when</para>
  207. <indexterm zone="ch-system-procps w">
  208. <primary sortas="b-w">w</primary>
  209. </indexterm>
  210. </listitem>
  211. </varlistentry>
  212. <varlistentry id="watch">
  213. <term><command>watch</command></term>
  214. <listitem>
  215. <para>Runs a given command repeatedly, displaying the first
  216. screen-full of its output; this allows a user to watch the output
  217. change over time</para>
  218. <indexterm zone="ch-system-procps watch">
  219. <primary sortas="b-watch">watch</primary>
  220. </indexterm>
  221. </listitem>
  222. </varlistentry>
  223. <varlistentry id="libprocps">
  224. <term><filename class="libraryfile">libprocps</filename></term>
  225. <listitem>
  226. <para>Contains the functions used by most programs in this
  227. package</para>
  228. <indexterm zone="ch-system-procps libprocps">
  229. <primary sortas="c-libprocps">libprocps</primary>
  230. </indexterm>
  231. </listitem>
  232. </varlistentry>
  233. </variablelist>
  234. </sect2>
  235. </sect1>