source: chapter06/findutils.xml@ 78cc3be

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 78cc3be was 78cc3be, checked in by Pierre Labastie <pieere@…>, 5 years ago

Update all chapter 6 contents and description sections.
Patch by Xi Ruoyao.

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

  • Property mode set to 100644
File size: 5.8 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
8<sect1 id="ch-system-findutils" role="wrap">
9 <?dbhtml filename="findutils.html"?>
10
11 <sect1info condition="script">
12 <productname>findutils</productname>
13 <productnumber>&findutils-version;</productnumber>
14 <address>&findutils-url;</address>
15 </sect1info>
16
17 <title>Findutils-&findutils-version;</title>
18
19 <indexterm zone="ch-system-findutils">
20 <primary sortas="a-Findutils">Findutils</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
25
26 <para>The Findutils package contains programs to find files. These programs
27 are provided to recursively search through a directory tree and to
28 create, maintain, and search a database (often faster than the recursive
29 find, but unreliable if the database has not been recently updated).</para>
30
31 <segmentedlist>
32 <segtitle>&buildtime;</segtitle>
33 <segtitle>&diskspace;</segtitle>
34
35 <seglistitem>
36 <seg>&findutils-ch6-sbu;</seg>
37 <seg>&findutils-ch6-du;</seg>
38 </seglistitem>
39 </segmentedlist>
40
41 </sect2>
42
43 <sect2 role="installation">
44 <title>Installation of Findutils</title>
45
46 <!-- this has been fixed in upstream gnulib, when a new version of
47 findutils is released, please check #4055 to see if the change has been
48 picked up in this package -->
49 <para>First, suppress a test which on some machines can loop forever:</para>
50
51<screen><userinput remap="pre">sed -i 's/test-lock..EXEEXT.//' tests/Makefile.in</userinput></screen>
52
53 <para>Next, make some fixes required by glibc-2.28 and later:</para>
54
55<screen><userinput remap="pre">sed -i 's/IO_ftrylockfile/IO_EOF_SEEN/' gl/lib/*.c
56sed -i '/unistd/a #include &lt;sys/sysmacros.h&gt;' gl/lib/mountlist.c
57echo "#define _IO_IN_BACKUP 0x100" >> gl/lib/stdio-impl.h</userinput></screen>
58
59 <para>Prepare Findutils for compilation:</para>
60
61<screen><userinput remap="configure">./configure --prefix=/usr --localstatedir=/var/lib/locate</userinput></screen>
62
63 <variablelist>
64 <title>The meaning of the configure options:</title>
65
66 <varlistentry>
67 <term><parameter>--localstatedir</parameter></term>
68 <listitem>
69 <para>This option changes the location of the <command>locate</command>
70 database to be in <filename class="directory">/var/lib/locate</filename>,
71 which is FHS-compliant.</para>
72 </listitem>
73 </varlistentry>
74
75 </variablelist>
76
77 <para>Compile the package:</para>
78
79<screen><userinput remap="make">make</userinput></screen>
80
81 <para>To test the results, issue:</para>
82
83<screen><userinput remap="test">make check</userinput></screen>
84
85 <para>Install the package:</para>
86
87<screen><userinput remap="install">make install</userinput></screen>
88
89 <para revision="sysv">Some of the scripts in the LFS-Bootscripts package
90 depend on <command>find</command>. As <filename
91 class="directory">/usr</filename> may not be available during the early
92 stages of booting, this program needs to be on the root partition. The
93 <command>updatedb</command> script also needs to be modified to correct an
94 explicit path:</para>
95
96 <para revision="systemd"> Some packages in BLFS and beyond expect the
97 <command>find</command> program in <filename
98 class="directory">/bin</filename>, so make sure it's placed there:</para>
99
100<screen><userinput remap="install">mv -v /usr/bin/find /bin
101sed -i 's|find:=${BINDIR}|find:=/bin|' /usr/bin/updatedb</userinput></screen>
102
103 </sect2>
104
105 <sect2 id="contents-findutils" role="content">
106 <title>Contents of Findutils</title>
107
108 <segmentedlist>
109 <segtitle>Installed programs</segtitle>
110 <segtitle>Installed directory</segtitle>
111
112 <seglistitem>
113 <seg>find, locate, updatedb, and xargs</seg>
114 <seg>/var/lib/locate</seg>
115 </seglistitem>
116
117 </segmentedlist>
118
119 <variablelist>
120 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
121 <?dbfo list-presentation="list"?>
122 <?dbhtml list-presentation="table"?>
123
124 <varlistentry id="find">
125 <term><command>find</command></term>
126 <listitem>
127 <para>Searches given directory trees for files matching the specified
128 criteria</para>
129 <indexterm zone="ch-system-findutils find">
130 <primary sortas="b-find">find</primary>
131 </indexterm>
132 </listitem>
133 </varlistentry>
134
135 <varlistentry id="locate">
136 <term><command>locate</command></term>
137 <listitem>
138 <para>Searches through a database of file names and reports the names
139 that contain a given string or match a given pattern</para>
140 <indexterm zone="ch-system-findutils locate">
141 <primary sortas="b-locate">locate</primary>
142 </indexterm>
143 </listitem>
144 </varlistentry>
145
146 <varlistentry id="updatedb">
147 <term><command>updatedb</command></term>
148 <listitem>
149 <para>Updates the <command>locate</command> database; it scans the
150 entire file system (including other file systems that are currently
151 mounted, unless told not to) and puts every file name it finds into
152 the database</para>
153 <indexterm zone="ch-system-findutils updatedb">
154 <primary sortas="b-updatedb">updatedb</primary>
155 </indexterm>
156 </listitem>
157 </varlistentry>
158
159 <varlistentry id="xargs">
160 <term><command>xargs</command></term>
161 <listitem>
162 <para>Can be used to apply a given command to a list of files</para>
163 <indexterm zone="ch-system-findutils xargs">
164 <primary sortas="b-xargs">xargs</primary>
165 </indexterm>
166 </listitem>
167 </varlistentry>
168
169 </variablelist>
170
171 </sect2>
172
173</sect1>
Note: See TracBrowser for help on using the repository browser.