source: chapter06/psmisc.xml@ 6856842

Last change on this file since 6856842 was 6856842, checked in by Jeremy Huntwork <jhuntwork@…>, 19 years ago

Bring alphabetical branch up-to-speed with trunk

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/alphabetical/BOOK@7219 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 4.1 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[1770019]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
[673b0d8]3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
[81fd230]6<sect1 id="ch-system-psmisc" role="wrap">
[673b0d8]7<title>Psmisc-&psmisc-version;</title>
8<?dbhtml filename="psmisc.html"?>
9
10<indexterm zone="ch-system-psmisc"><primary sortas="a-Psmisc">Psmisc</primary></indexterm>
[6370fa6]11
[a001133]12<sect2 role="package"><title/>
[e5846ef]13<para>The Psmisc package contains programs for displaying information about
14running processes.</para>
[5888299]15
[a001133]16<segmentedlist>
17<segtitle>&buildtime;</segtitle>
18<segtitle>&diskspace;</segtitle>
[eb6d9eb]19<seglistitem><seg>0.1 SBU</seg><seg>1.7 MB</seg></seglistitem>
[a001133]20</segmentedlist>
[673b0d8]21
[81fd230]22<segmentedlist>
[45992ae]23<segtitle>&dependencies;</segtitle>
[81fd230]24<seglistitem><seg>Bash, Binutils, Coreutils, Diffutils,
25GCC, Gettext, Glibc, Grep, Make, Ncurses, and Sed</seg></seglistitem>
26</segmentedlist>
[a001133]27</sect2>
[3554fa3a]28
[a001133]29<sect2 role="installation">
[73aedd1d]30<title>Installation of Psmisc</title>
31
32<para>Prepare Psmisc for compilation:</para>
33
[9dfc02f]34<screen><userinput>./configure --prefix=/usr --exec-prefix=""</userinput></screen>
[73aedd1d]35
[fc298480]36<para>The meaning of the configure options:</para>
[81fd230]37
38<variablelist>
39<varlistentry>
40<term><parameter>--exec-prefix=""</parameter></term>
[fde4f7d]41<listitem><para>This ensures that the Psmisc binaries will install into
42<filename class="directory">/bin</filename> instead of <filename
43class="directory">/usr/bin</filename>. This is the correct location according to
44the FHS, because some of the Psmisc binaries are used by the LFS-Bootscripts
45package.</para></listitem>
[81fd230]46</varlistentry>
47</variablelist>
48
[73aedd1d]49<para>Compile the package:</para>
50
51<screen><userinput>make</userinput></screen>
52
[6856842]53<para>This package does not come with a test suite.</para>
54
[81fd230]55<para>Install the package:</para>
[73aedd1d]56
57<screen><userinput>make install</userinput></screen>
58
[81fd230]59<para>There is no reason for the <command>pstree</command> and
60<command>pstree.x11</command> programs to reside in <filename
61class="directory">/bin</filename>. Therefore, move them to <filename
[9e34c5f]62class="directory">/usr/bin</filename>:</para>
[10e1008]63
[5998892]64<screen><userinput>mv -v /bin/pstree* /usr/bin</userinput></screen>
[10e1008]65
[81fd230]66<para>By default, Psmisc's <command>pidof</command> program is not
67installed. This usually is not a problem because it is installed later
68in the Sysvinit package, which provides a better
69<command>pidof</command> program. If Sysvinit will not be used for a
70particular system, complete the installation of Psmisc by creating the
71following symlink:</para>
[73aedd1d]72
[5998892]73<screen><userinput>ln -sv killall /bin/pidof</userinput></screen>
[73aedd1d]74
75</sect2>
[6370fa6]76
[5888299]77
[c6cb3aa]78<sect2 id="contents-psmisc" role="content"><title>Contents of Psmisc</title>
[673b0d8]79
[81fd230]80<segmentedlist>
81<segtitle>Installed programs</segtitle>
82<seglistitem><seg>fuser, killall, pstree, and pstree.x11 (link to pstree)</seg></seglistitem>
83</segmentedlist>
84
85<variablelist><bridgehead renderas="sect3">Short Descriptions</bridgehead>
86<?dbfo list-presentation="list"?>
[8f97096]87<?dbhtml list-presentation="table"?>
[81fd230]88
89<varlistentry id="fuser">
90<term><command>fuser</command></term>
91<listitem>
92<para>Reports the Process IDs (PIDs) of processes that use the given files or file systems</para>
93<indexterm zone="ch-system-psmisc fuser"><primary sortas="b-fuser">fuser</primary></indexterm>
94</listitem>
95</varlistentry>
96
97<varlistentry id="killall">
98<term><command>killall</command></term>
99<listitem>
100<para>Kills processes by name; it sends a signal to all processes
101running any of the given commands</para>
102<indexterm zone="ch-system-psmisc killall"><primary sortas="b-killall">killall</primary></indexterm>
103</listitem>
104</varlistentry>
105
106<varlistentry id="pstree">
107<term><command>pstree</command></term>
108<listitem>
109<para>Displays running processes as a tree</para>
110<indexterm zone="ch-system-psmisc pstree"><primary sortas="b-pstree">pstree</primary></indexterm>
111</listitem>
112</varlistentry>
113
114<varlistentry id="pstree.x11">
115<term><command>pstree.x11</command></term>
116<listitem>
117<para>Same as <command>pstree</command>, except that it waits for confirmation before exiting</para>
118<indexterm zone="ch-system-psmisc pstree.x11"><primary sortas="b-pstree.x11">pstree.x11</primary></indexterm>
119</listitem>
120</varlistentry>
121</variablelist>
[673b0d8]122
123</sect2>
124
125</sect1>
[81fd230]126
Note: See TracBrowser for help on using the repository browser.