source: chapter06/bzip2.xml@ 4ebf97c

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 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 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 4ebf97c was 4ebf97c, checked in by Matthew Burgess <matthew@…>, 18 years ago

Omit running Bzip2's testsuite as a separate step

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

  • Property mode set to 100644
File size: 6.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-system-bzip2" role="wrap">
7<title>Bzip2-&bzip2-version;</title>
8<?dbhtml filename="bzip2.html"?>
9
10<indexterm zone="ch-system-bzip2"><primary sortas="a-Bzip2">Bzip2</primary></indexterm>
11
12<sect2 role="package"><title/>
13<para>The Bzip2 package contains programs for compressing and decompressing
14files. Compressing text files with <command>bzip2</command> yields a much better
15compression percentage than with the traditional <command>gzip</command>.</para>
16
17<segmentedlist>
18<segtitle>&buildtime;</segtitle>
19<segtitle>&diskspace;</segtitle>
20<seglistitem><seg>0.1 SBU</seg><seg>3.9 MB</seg></seglistitem>
21</segmentedlist>
22
23<segmentedlist>
24<segtitle>&dependencies;</segtitle>
25<seglistitem><seg>Bash, Binutils, Coreutils, Diffutils,
26GCC, Glibc, and Make</seg></seglistitem>
27</segmentedlist>
28</sect2>
29
30<sect2 role="installation">
31<title>Installation of Bzip2</title>
32
33<para>Apply a patch to install the documentation for this package:</para>
34
35<screen><userinput>patch -Np1 -i ../&bzip2-docs-patch;</userinput></screen>
36
37<para>The <command>bzgrep</command> command does not escape '|' and '&amp;' in
38filenames passed to it. This allows arbitrary commands to be executed with the
39privileges of the user running <command>bzgrep</command>. Apply the following to
40address this:</para>
41
42<screen><userinput>patch -Np1 -i ../&bzip2-bzgrep-patch;</userinput></screen>
43
44<para>Prepare Bzip2 for compilation with:</para>
45
46<screen><userinput>make -f Makefile-libbz2_so
47make clean</userinput></screen>
48
49<para>The <parameter>-f</parameter> flag will cause Bzip2 to be built
50using a different <filename>Makefile</filename> file, in this case the
51<filename>Makefile-libbz2_so</filename> file, which creates a dynamic
52<filename class="libraryfile">libbz2.so</filename> library and links the Bzip2
53utilities against it.</para>
54
55<para>Compile and test the package:</para>
56
57<screen><userinput>make</userinput></screen>
58
59<para>If reinstalling Bzip2, perform
60<userinput>rm -vf /usr/bin/bz*</userinput> first, otherwise the following
61<command>make install</command> will fail.</para>
62
63<para>Install the programs:</para>
64
65<screen><userinput>make install</userinput></screen>
66
67<para>Install the shared <command>bzip2</command> binary into the
68<filename class="directory">/bin</filename> directory, make
69some necessary symbolic links, and clean up:</para>
70
71<screen><userinput>cp -v bzip2-shared /bin/bzip2
72cp -av libbz2.so* /lib
73ln -sv ../../lib/libbz2.so.1.0 /usr/lib/libbz2.so
74rm -v /usr/bin/{bunzip2,bzcat,bzip2}
75ln -sv bzip2 /bin/bunzip2
76ln -sv bzip2 /bin/bzcat</userinput></screen>
77
78</sect2>
79
80
81<sect2 id="contents-bzip2" role="content"><title>Contents of Bzip2</title>
82
83<segmentedlist>
84<segtitle>Installed programs</segtitle>
85<segtitle>Installed libraries</segtitle>
86<seglistitem><seg>bunzip2 (link to bzip2), bzcat (link to bzip2), bzcmp, bzdiff,
87bzegrep, bzfgrep, bzgrep, bzip2, bzip2recover, bzless, and bzmore</seg>
88<seg>libbz2.[a,so]</seg></seglistitem>
89</segmentedlist>
90
91<variablelist><bridgehead renderas="sect3">Short Descriptions</bridgehead>
92<?dbfo list-presentation="list"?>
93<?dbhtml list-presentation="table"?>
94
95<varlistentry id="bunzip2">
96<term><command>bunzip2</command></term>
97<listitem>
98<para>Decompresses bzipped files</para>
99<indexterm zone="ch-system-bzip2 bunzip2"><primary sortas="b-bunzip2">bunzip2</primary></indexterm>
100</listitem>
101</varlistentry>
102
103<varlistentry id="bzcat">
104<term><command>bzcat</command></term>
105<listitem>
106<para>Decompresses to standard output</para>
107<indexterm zone="ch-system-bzip2 bzcat"><primary sortas="b-bzcat">bzcat</primary></indexterm>
108</listitem>
109</varlistentry>
110
111<varlistentry id="bzcmp">
112<term><command>bzcmp</command></term>
113<listitem>
114<para>Runs <command>cmp</command> on bzipped files</para>
115<indexterm zone="ch-system-bzip2 bzcmp"><primary sortas="b-bzcmp">bzcmp</primary></indexterm>
116</listitem>
117</varlistentry>
118
119<varlistentry id="bzdiff">
120<term><command>bzdiff</command></term>
121<listitem>
122<para>Runs <command>diff</command> on bzipped files</para>
123<indexterm zone="ch-system-bzip2 bzdiff"><primary sortas="b-bzdiff">bzdiff</primary></indexterm>
124</listitem>
125</varlistentry>
126
127<varlistentry id="bzgrep">
128<term><command>bzgrep</command></term>
129<listitem>
130<para>Runs <command>grep</command> on bzipped files</para>
131<indexterm zone="ch-system-bzip2 bzgrep"><primary sortas="b-bzgrep">bzgrep</primary></indexterm>
132</listitem>
133</varlistentry>
134
135<varlistentry id="bzegrep">
136<term><command>bzegrep</command></term>
137<listitem>
138<para>Runs <command>egrep</command> on bzipped files</para>
139<indexterm zone="ch-system-bzip2 bzegrep"><primary sortas="b-bzegrep">bzegrep</primary></indexterm>
140</listitem>
141</varlistentry>
142
143<varlistentry id="bzfgrep">
144<term><command>bzfgrep</command></term>
145<listitem>
146<para>Runs <command>fgrep</command> on bzipped files</para>
147<indexterm zone="ch-system-bzip2 bzfgrep"><primary sortas="b-bzfgrep">bzfgrep</primary></indexterm>
148</listitem>
149</varlistentry>
150
151<varlistentry id="bzip2">
152<term><command>bzip2</command></term>
153<listitem>
154<para>Compresses files using the Burrows-Wheeler block sorting text
155compression algorithm with Huffman coding; the compression rate is
156better than that achieved by more conventional compressors using
157<quote>Lempel-Ziv</quote> algorithms, like <command>gzip</command></para>
158<indexterm zone="ch-system-bzip2 bzip2"><primary sortas="b-bzip2">bzip2</primary></indexterm>
159</listitem>
160</varlistentry>
161
162<varlistentry id="bzip2recover">
163<term><command>bzip2recover</command></term>
164<listitem>
165<para>Tries to recover data from damaged bzipped files</para>
166<indexterm zone="ch-system-bzip2 bzip2recover"><primary sortas="b-bzip2recover">bzip2recover</primary></indexterm>
167</listitem>
168</varlistentry>
169
170<varlistentry id="bzless">
171<term><command>bzless</command></term>
172<listitem>
173<para>Runs <command>less</command> on bzipped files</para>
174<indexterm zone="ch-system-bzip2 bzless"><primary sortas="b-bzless">bzless</primary></indexterm>
175</listitem>
176</varlistentry>
177
178<varlistentry id="bzmore">
179<term><command>bzmore</command></term>
180<listitem>
181<para>Runs <command>more</command> on bzipped files</para>
182<indexterm zone="ch-system-bzip2 bzmore"><primary sortas="b-bzmore">bzmore</primary></indexterm>
183</listitem>
184</varlistentry>
185
186<varlistentry id="libbz2">
187<term><filename class="libraryfile">libbz2*</filename></term>
188<listitem>
189<para>The library implementing lossless, block-sorting data
190compression, using the Burrows-Wheeler algorithm</para>
191<indexterm zone="ch-system-bzip2 libbz2"><primary sortas="c-libbz2*">libbz2*</primary></indexterm>
192</listitem>
193</varlistentry>
194</variablelist>
195
196</sect2>
197
198</sect1>
199
Note: See TracBrowser for help on using the repository browser.