source: general/sysutils/pciutils.xml@ 8aeb474

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 8aeb474 was 394c86f8, checked in by Krejzi <krejzi@…>, 12 years ago

Mark some packages as 7.2 checked. Part 5 - System Utilities.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@10553 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 6.6 KB
Line 
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 <!ENTITY pciutils-download-http "http://ftp.kernel.org/pub/software/utils/pciutils/pciutils-&pciutils-version;.tar.xz">
8 <!ENTITY pciutils-download-ftp "ftp://ftp.kernel.org/pub/software/utils/pciutils/pciutils-&pciutils-version;.tar.xz">
9 <!ENTITY pciutils-md5sum "72ebc3624ccb43ae2ddf872b5dfdb3c9">
10 <!ENTITY pciutils-size "264 KB">
11 <!ENTITY pciutils-buildsize "3.5 MB">
12 <!ENTITY pciutils-time "0.1 SBU">
13]>
14
15<sect1 id="pciutils" xreflabel="PCI Utils-&pciutils-version;">
16 <?dbhtml filename="pciutils.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>PCI Utils-&pciutils-version;</title>
24
25 <indexterm zone="pciutils">
26 <primary sortas="a-PCI-Utils">PCI Utils</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to PCI Utils</title>
31
32 <para>
33 The <application>PCI Utils</application> package contains
34 a set of programs for listing PCI devices, inspecting
35 their status and setting their configuration registers.
36 </para>
37
38 &lfs72_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>
44 Download (HTTP): <ulink url="&pciutils-download-http;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download (FTP): <ulink url="&pciutils-download-ftp;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download MD5 sum: &pciutils-md5sum;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download size: &pciutils-size;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated disk space required: &pciutils-buildsize;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated build time: &pciutils-time;
70 </para>
71 </listitem>
72 </itemizedlist>
73
74 <para condition="html" role="usernotes">User Notes:
75 <ulink url="&blfs-wiki;/pciutils"/>
76 </para>
77 </sect2>
78
79 <sect2 role="installation">
80 <title>Installation of PCI Utils</title>
81
82 <para>
83 Install <application>PCI Utils</application> by
84 running the following commands:
85 </para>
86
87<screen><userinput>make PREFIX=/usr \
88 SHAREDIR=/usr/share/misc \
89 MANDIR=/usr/share/man \
90 SHARED=yes ZLIB=no all</userinput></screen>
91
92 <para>
93 This package does not come with a test suite.
94 </para>
95
96 <para>
97 Now, as the <systemitem class="username">root</systemitem> user:
98 </para>
99
100<screen role="root"><userinput>make PREFIX=/usr \
101 SHAREDIR=/usr/share/misc \
102 MANDIR=/usr/share/man \
103 SHARED=yes ZLIB=no \
104 install install-lib</userinput></screen>
105
106 </sect2>
107
108 <sect2 role="commands">
109 <title>Command Explanations</title>
110
111 <para>
112 <parameter>SHARED=yes</parameter>: This parameter enables building of
113 shared library instead of static one.
114 </para>
115
116 <para>
117 <parameter>ZLIB=no</parameter>: This parameter prevents compression of
118 the <filename>pci.ids</filename> file.
119 </para>
120
121
122 </sect2>
123
124 <sect2 role="configuration">
125 <title>Configuring PCI Utils</title>
126
127 <para>
128 The <filename>pci.ids</filename> data file is constantly being
129 updated. To get a current version of this file, run
130 <command>update-pciids</command> as the <systemitem
131 class="username">root</systemitem> user. This program requires the
132 <xref linkend="which"/> script or program to find <xref linkend="curl"/>,
133 <xref linkend="lynx"/> or <xref linkend="wget"/> which are used to
134 download the most current file, and then replace the existing file in
135 <filename class="directory">/usr/share/misc</filename>.
136 </para>
137
138 <para>
139 You may wish to add an entry to
140 <systemitem class="username">root</systemitem>'s (or any other user who has
141 write privilege to <filename class="directory">/usr/share/misc</filename>)
142 crontab to automatically update the <filename>pci.ids</filename> file
143 periodically.
144 </para>
145
146 </sect2>
147
148 <sect2 role="content">
149 <title>Contents</title>
150
151 <segmentedlist>
152 <segtitle>Installed Programs</segtitle>
153 <segtitle>Installed Library</segtitle>
154 <segtitle>Installed Directory</segtitle>
155
156 <seglistitem>
157 <seg>
158 lspci, setpci and update-pciids
159 </seg>
160 <seg>
161 libpci.so
162 </seg>
163 <seg>
164 /usr/include/pci
165 </seg>
166 </seglistitem>
167 </segmentedlist>
168
169 <variablelist>
170 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
171 <?dbfo list-presentation="list"?>
172 <?dbhtml list-presentation="table"?>
173
174 <varlistentry id="lspci">
175 <term><command>lspci</command></term>
176 <listitem>
177 <para>
178 is an utility for displaying information about all PCI buses
179 in the system and all devices connected to them.
180 </para>
181 <indexterm zone="pciutils lspci">
182 <primary sortas="b-lspci">lspci</primary>
183 </indexterm>
184 </listitem>
185 </varlistentry>
186
187 <varlistentry id="setpci">
188 <term><command>setpci</command></term>
189 <listitem>
190 <para>
191 is an utility for querying and configuring PCI devices.
192 </para>
193 <indexterm zone="pciutils setpci">
194 <primary sortas="b-setpci">setpci</primary>
195 </indexterm>
196 </listitem>
197 </varlistentry>
198
199 <varlistentry id="update-pciids">
200 <term><command>update-pciids</command></term>
201 <listitem>
202 <para>
203 fetches the current version of the PCI ID list. Requires
204 <xref linkend="curl"/>, <xref linkend="lynx"/> or
205 <xref linkend="wget"/>.
206 </para>
207 <indexterm zone="pciutils update-pciids">
208 <primary sortas="b-update-pciids">update-pciids</primary>
209 </indexterm>
210 </listitem>
211 </varlistentry>
212
213 <varlistentry id="libpci">
214 <term><filename role='library'>libpci.so</filename></term>
215 <listitem>
216 <para>
217 is library that allows applications to access the PCI
218 subsystem.
219 </para>
220 <indexterm zone="pciutils libpci">
221 <primary sortas="c-libpci">libpci.so</primary>
222 </indexterm>
223 </listitem>
224 </varlistentry>
225
226 </variablelist>
227
228 </sect2>
229
230</sect1>
Note: See TracBrowser for help on using the repository browser.