From 034861a5998feaebcec8e5029f8967b42344bd93 Mon Sep 17 00:00:00 2001 From: Alan Hicks Date: Wed, 24 Feb 2010 01:29:54 -0500 Subject: Added the very beginning of tar. --- chapter_04.xml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) 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. +
+LZMA + + +The latest compression utility added to Slackware is +xz, which impliments the LZMA compression +algorithm. This is faster than bzip2 and +often compresses better as well. In fact, its blend of speed and +compression strength caused it to replace +gzip as the compression scheme of choice for +Slackware. Unfortuantely, xz does not have +a man page at the time of this writing, so to view available options, +use the --help argument. Compressing files is accomplished +with the -z argument, and decompression with -d. + + +darkstar:~$ xz -z /tmp/large_file + +
+ +
+tar + + +So great, we know how to compress files using all sorts of programs, +but none of them can archive files in the way that +zip does. That is until now. The Tape +Archiver, or tar(1) is the most frequently +used archival program in Slackware. + + +
+
-- cgit v1.2.3