source: chapter06/tar.xml@ 9c9d585

Last change on this file since 9c9d585 was 1fe35e1, checked in by Matthew Burgess <matthew@…>, 20 years ago
  • (chapter06/*.xml) RELAX NG validation fixes

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

  • Property mode set to 100644
File size: 2.2 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE section [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<section xmlns="http://docbook.org/docbook-ng"
7 xml:id="ch-system-tar" xreflabel="Tar" role="wrap">
8<info><title>Tar-&tar-version;</title></info>
9<?dbhtml filename="tar.html"?>
10
11<indexterm zone="ch-system-tar"><primary sortas="a-Tar">Tar</primary></indexterm>
12
13<section role="package"><info><title/></info>
14<para>The Tar package contains an archiving program.</para>
15
16<segmentedlist>
17<segtitle>&buildtime;</segtitle>
18<segtitle>&diskspace;</segtitle>
19<seglistitem><seg>0.2 SBU</seg><seg>10 MB</seg></seglistitem>
20</segmentedlist>
21
22<segmentedlist>
23<segtitle>Tar installation depends on</segtitle>
24<seglistitem><seg>Bash, Binutils, Coreutils,
25Diffutils, GCC, Gettext, Glibc, Grep, Make, Sed</seg></seglistitem>
26</segmentedlist>
27</section>
28
29<section role="installation">
30<info><title>Installation of Tar</title></info>
31
32<para>Prepare Tar for compilation:</para>
33
34<screen><userinput>./configure --prefix=/usr --bindir=/bin --libexecdir=/usr/sbin</userinput></screen>
35
36<para>Compile the package:</para>
37
38<screen><userinput>make</userinput></screen>
39
40<para>To test the results, issue:
41<userinput>make check</userinput>.</para>
42
43<para>Now install the package:</para>
44
45<screen><userinput>make install</userinput></screen>
46
47</section>
48
49
50<section xml:id="contents-tar" role="content"><info><title>Contents of Tar</title></info>
51
52<segmentedlist>
53<segtitle>Installed programs</segtitle>
54<seglistitem><seg>rmt and tar</seg></seglistitem>
55</segmentedlist>
56
57<variablelist><title>Short descriptions</title>
58
59<varlistentry xml:id="rmt">
60<term><command>rmt</command></term>
61<listitem>
62<indexterm zone="ch-system-tar rmt"><primary sortas="b-rmt">rmt</primary></indexterm>
63<para>is used to remotely manipulate a magnetic
64tape drive, through an interprocess communication connection.</para>
65</listitem>
66</varlistentry>
67
68<varlistentry xml:id="tar">
69<term><command>tar</command></term>
70<listitem>
71<indexterm zone="ch-system-tar tar"><primary sortas="b-tar">tar</primary></indexterm>
72<para>is used to create and extract files from archives, also known as tarballs.</para>
73</listitem>
74</varlistentry>
75</variablelist>
76
77</section>
78
79</section>
Note: See TracBrowser for help on using the repository browser.