Chapter 11 Study Guide: Difference between revisions

From ITCwiki
Jump to navigation Jump to search
(Created page with "'''Compression, System Backup, and Software Installation''' ==Compression== Compression is the process in which files are reduced in size by a compression algorithm. The standa...")
 
No edit summary
Line 16: Line 16:
*Symbolic links are no compressed unless the -f option is given.
*Symbolic links are no compressed unless the -f option is given.


Useful commands include:
====Useful commands include:====
  compress
  ''compress''
  uncompress
  ''uncompress''
  zcat
  ''zcat''
  zmore
  ''zmore''
  zless
  ''zless''


Common options used with the compress utility
Common options used with the compress utility
  -c    Used with uncompress, it displays the contents of the compressed file to SO
  -c    Used with ''uncompress'', it displays the contents of the compressed file to SO
  -f    Used with compress, used to compress symbolic links. Used with uncompress, overwrites existing files without prompting user.
  -f    Used with compress, used to compress symbolic links. Used with uncompress, overwrites existing files without prompting user.
  -r    Specifies to compress or decompress all files recursively within a directory.
  -r    Specifies to compress or decompress all files recursively within a directory.
Line 39: Line 39:
*Default compression number is 6.
*Default compression number is 6.


Useful commands include:
====Useful commands include:====
  gzip
  ''gzip''
  gunzip
  ''gunzip''
   
   
Common options used with the gzip utility
Common options used with the gzip utility
Line 56: Line 56:
  --fast          Results in a lower compression ratio; same as the -1 option.
  --fast          Results in a lower compression ratio; same as the -1 option.
  -h
  -h
  --help          Displays the syntax and available options for the gzip and gunzip commands.
  --help          Displays the syntax and available options for the ''gzip'' and ''gunzip'' commands.
  -l
  -l
  --list          Lists the compression ratio for files that have been compressed with gzip.
  --list          Lists the compression ratio for files that have been compressed with ''gzip''.
  -n
  -n
  --no-name        Does not allow gzip and gunzip to preserve the original modification and access time for fiels.
  --no-name        Does not allow ''gzip'' and ''gunzip'' to preserve the original modification and access time for fiels.
  -q
  -q
  --quite          Supresses all warning messages.
  --quite          Supresses all warning messages.
Line 80: Line 80:
*Symbolic links are only compressed if the -f option is used.
*Symbolic links are only compressed if the -f option is used.
*Compressed files are renamed with .bz2 filename extension.
*Compressed files are renamed with .bz2 filename extension.
*to decompress files, use the bunzip2 command followed by the filename to decompress.
*to decompress files, use the ''bunzip2'' command followed by the filename to decompress.


Useful commands include:
====Useful commands include:====
  bzip2
  ''bzip2''
  bzcat
  ''bzcat''
  bzmore
  ''bzmore''
  bzless
  ''bzless''
  bunzip2
  ''bunzip2''
   
   
Common options used with the bzip2 utility
Common options used with the bzip2 utility
Line 94: Line 94:
  --stdout    Displays the contents of the compressed file to SO.
  --stdout    Displays the contents of the compressed file to SO.
  -d
  -d
  --decompress Decompresses the files specified, same as bunzip2 command.
  --decompress Decompresses the files specified, same as ''bunzip2'' command.
  -f
  -f
  --force      Compresses symbolic links, or overwrites any existing files without prompting the user.
  --force      Compresses symbolic links, or overwrites any existing files without prompting the user.
Line 107: Line 107:
  -v
  -v
  --verbose    Displays verbose output(compression ratio).
  --verbose    Displays verbose output(compression ratio).
==System Backup==
A '''system backup''' is the process of creating backup copies of files and directories regularly and storing them at an alternate location. These copies can be distributed to other computers, or use them to restore files lost as a result of a system failure. The backup copies of files and directories are called '''archives'''.

Revision as of 00:51, 18 April 2012

Compression, System Backup, and Software Installation

Compression

Compression is the process in which files are reduced in size by a compression algorithm. The standard set of instructions used to compress a file is the compression algorithm. To decompress a file, you run compression algorithm in reverse. Compression ratios are known as the different rates of compression, which vary among the different compression algorithms. The compression utilities discussed in this chapter are:

  • Compress
  • Gzip
  • Bzip2

Compress

  • Uses Adaptive Lempel-Ziv coding(LWZ) as its compression algorithm.
  • Average compression ratio of 40 to 50 percent.
  • Compressed files are renamed with a .Z filename extension to indicate that it is compressed.
  • Symbolic links are no compressed unless the -f option is given.

Useful commands include:

compress
uncompress
zcat
zmore
zless

Common options used with the compress utility

-c     Used with uncompress, it displays the contents of the compressed file to SO
-f     Used with compress, used to compress symbolic links. Used with uncompress, overwrites existing files without prompting user.
-r     Specifies to compress or decompress all files recursively within a directory.
-v     Displays verbose output during compression and decompression.

Gzip

  • GNU zip(gzip).
  • Uses Limpel-Ziv(LZ77) compression algorithm.
  • Average compression ratio is 60 to 70 percent.
  • Symbolic links are no compressed unless the -f option is given.
  • Compressed files use the .gz filename extension.
  • Ability to control the compression ratio using numeric values 1-9. 1 gives you faster compression time and yields lower ratio, 9 gives you slowest compression time and yields higher ratio.
  • Default compression number is 6.

Useful commands include:

gzip
gunzip

Common options used with the gzip utility

-#               Specifies how thorough the compression will be. # can be any numeric value from 1 to 9. If no value, Default is 6.
--best           Results in higher compression ratio; same as the -9 option.
-c
--stdout
-to-stdout       Displays the contents of the compress file to SO.
-d
--decompress
--uncompress     Decompresses the files specified when used with the gzip command.
-f
--force          Compresses symbolic links, or overwrites any existing files without prompting user.
--fast           Results in a lower compression ratio; same as the -1 option.
-h
--help           Displays the syntax and available options for the gzip and gunzip commands.
-l
--list           Lists the compression ratio for files that have been compressed with gzip.
-n
--no-name        Does not allow gzip and gunzip to preserve the original modification and access time for fiels.
-q
--quite          Supresses all warning messages.
-r
--recursive      Specifies to compress or decompress all files recursively within a directory.
-S .suffix 
--suffix
.suffix          Specifies a file suffix other than .gz.
-t
--test           Performs a test decompression so the user can view any error messages before decompression.
-v
--verbose        Displays verbose output(compression ratio and filenames).

Bzip2

  • Uses Burrows-Wheeler Block Sorting Huffman Coding compression algorithm.
  • Cannot be used to compress a directory full of files.
  • Compression ratio is 50 to 75 percent.
  • Symbolic links are only compressed if the -f option is used.
  • Compressed files are renamed with .bz2 filename extension.
  • to decompress files, use the bunzip2 command followed by the filename to decompress.

Useful commands include:

bzip2
bzcat
bzmore
bzless
bunzip2

Common options used with the bzip2 utility

-#           Specifies the block size used during compression; -1 = block size of 100K, -9 = block size of 900K.
-c
--stdout     Displays the contents of the compressed file to SO.
-d
--decompress Decompresses the files specified, same as bunzip2 command.
-f
--force      Compresses symbolic links, or overwrites any existing files without prompting the user.
-k
--keep       Keeps the original file during compression; a new file is created with the extension .bz2.
-q
--quite      Suppresses all warning messages.
-s
-small       Minimizes memory usage during compression.
-t
--test       Performs a test decompression so a user can view any error messages before decompression.
-v
--verbose    Displays verbose output(compression ratio).

System Backup

A system backup is the process of creating backup copies of files and directories regularly and storing them at an alternate location. These copies can be distributed to other computers, or use them to restore files lost as a result of a system failure. The backup copies of files and directories are called archives.