blob: 41249115b01eb6446dab163be52456afbbea18d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
<!ENTITY % general-entities SYSTEM "../general.ent">
%general-entities;
]>
<sect1 id="ch-system-procinfo" xreflabel="Procinfo">
<title>Procinfo-&procinfo-version;</title>
<?dbhtml filename="procinfo.html"?>
<indexterm zone="ch-system-procinfo"><primary sortas="a-Procinfo">Procinfo</primary></indexterm>
<para>The Procinfo package contains programs for displaying system information.</para>
<screen>&buildtime; 0.1 SBU
&diskspace; 0.2 MB</screen>
<para>Procinfo installation depends on: Binutils, GCC, Glibc, Make, Ncurses.</para>
<sect2>
<title>Installation of Procinfo</title>
<para>Compile Procinfo:</para>
<screen><userinput>make LDLIBS=-lncurses</userinput></screen>
<para>The meaning of the make parameter:</para>
<itemizedlist>
<listitem><para><userinput>LDLIBS=-lncurses</userinput>: This tells Procinfo
to use the <filename>libncurses</filename> library instead of the
long-obsolete <filename>libtermcap</filename>.</para></listitem>
</itemizedlist>
<para>Install the package:</para>
<screen><userinput>make install</userinput></screen>
</sect2>
<sect2 id="contents-procinfo"><title>Contents of Procinfo</title>
<para><emphasis>Installed programs</emphasis>: lsdev, procinfo and
socklist</para>
</sect2>
<sect2><title>Short descriptions</title>
<indexterm zone="ch-system-procinfo lsdev"><primary sortas="b-lsdev">lsdev</primary></indexterm>
<para id="lsdev"><command>lsdev</command> lists the devices present in your system,
and which IRQs (Interrupt ReQuest) and IO ports they use.</para>
<indexterm zone="ch-system-procinfo procinfo"><primary sortas="b-procinfo">procinfo</primary></indexterm>
<para id="procinfo"><command>procinfo</command> displays an overview of some of the information
present in the virtual proc file system.</para>
<indexterm zone="ch-system-procinfo socklist"><primary sortas="b-socklist">socklist</primary></indexterm>
<para id="socklist"><command>socklist</command> lists the open sockets, reporting their
type, port number, and other specifics.</para>
</sect2>
</sect1>
|