summaryrefslogtreecommitdiffstats
path: root/chapter_04.xml
diff options
context:
space:
mode:
authorAlan Hicks <alan@lizella.net>2010-02-24 01:29:54 -0500
committerAlan Hicks <alan@lizella.net>2010-02-24 01:29:54 -0500
commit034861a5998feaebcec8e5029f8967b42344bd93 (patch)
tree27e96ab500e96b281ac51dc84a0d7ad396f484f9 /chapter_04.xml
parente77059e392129f58eeefc79f2a7dfed88f28f691 (diff)
downloadslackbook-034861a5998feaebcec8e5029f8967b42344bd93.tar.xz
Added the very beginning of tar.
Diffstat (limited to 'chapter_04.xml')
-rw-r--r--chapter_04.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/chapter_04.xml b/chapter_04.xml
index 0e37ca8..794113e 100644
--- a/chapter_04.xml
+++ b/chapter_04.xml
@@ -429,6 +429,39 @@ other alternatives.
</section>
+<section>
+<title>LZMA</title>
+
+<para>
+The latest compression utility added to Slackware is
+<application>xz</application>, which impliments the LZMA compression
+algorithm. This is faster than <application>bzip2</application> and
+often compresses better as well. In fact, its blend of speed and
+compression strength caused it to replace
+<application>gzip</application> as the compression scheme of choice for
+Slackware. Unfortuantely, <application>xz</application> does not have
+a man page at the time of this writing, so to view available options,
+use the <arg>--help</arg> argument. Compressing files is accomplished
+with the <arg>-z</arg> argument, and decompression with <arg>-d</arg>.
+</para>
+
+<screen><prompt>darkstar:~$ </prompt><userinput>xz -z /tmp/large_file</userinput></screen>
+
+</section>
+
+<section>
+<title>tar</title>
+
+<para>
+So great, we know how to compress files using all sorts of programs,
+but none of them can archive files in the way that
+<application>zip</application> does. That is until now. The Tape
+Archiver, or <application>tar</application>(1) is the most frequently
+used archival program in Slackware.
+</para>
+
+</section>
+
</section>
<section>