Term
2.4 - What does the globbing character "*" match? |
|
Definition
Match any character, including no characters |
|
|
Term
2.4 - What does the globbing character "?" match? |
|
Definition
|
|
Term
2.4 - What does the "[ ]" globbing character match? |
|
Definition
Match a class of characters |
|
|
Term
3.1 - What type of compression allows all of the bits to be restored? |
|
Definition
|
|
Term
3.1 - This type of compression allows for imperceptible data loss in images and video |
|
Definition
|
|
Term
3.1 - This type of tool is used to bundle up files and directories, common usage is backup |
|
Definition
|
|
Term
3.1 - While all archiving tools bundle up files and directories, some will not do this? |
|
Definition
Compression, some archive tools will need a stand-alone compression tool (ie. my-file-archive.tar.gz) |
|
|
Term
3.1 - What is the most common archiving tool in Linux. |
|
Definition
|
|
Term
3.1 - What is a common use for tarballs? |
|
Definition
Bundling up source code to be distributed |
|
|
Term
3.1 - What are the commands used inside a "bzip2" file? |
|
Definition
bzcat, bzgrep, bzdiff, bzless, bzmore, bzcat (bzip2 are prefixed with bz) |
|
|
Term
3.1 - What commands are used inside of a "gzip" file? |
|
Definition
zcat, zdiff, zless, zmore, zgrep, (all commands used inside of a gzip file are prefixed with "z") |
|
|
Term
3.1 - What are the commands used inside an "xz" file? |
|
Definition
xzcat, xzdiff, xzless, xzgrep, xzmore (all commands used inside an "xz" files are prefixed with an "xz") |
|
|
Term
3.1 - What does the "tar u" option do? |
|
Definition
Added a files to an existing uncompressed "tar" file |
|
|
Term
3.1 - What does the "tar c" option do? |
|
Definition
Creates a new archive file |
|
|
Term
3.1 - What does the "tar f" option do? |
|
Definition
This option is the name of the file to create |
|
|
Term
3.1 - What does the "tar t" option do? |
|
Definition
This option allows you to view the contents of the tarball file |
|
|
Term
3.1 - What does the "tar x" option do? |
|
Definition
This will extract files from an archive |
|
|
Term
3.1 - What does the "tar v" option do? |
|
Definition
It means verbose and will list the files processed |
|
|
Term
3.1 - What does the "tar z" option do? |
|
Definition
Calls "gzip" for compression |
|
|
Term
3.1 - What does the "tar j" option do? |
|
Definition
Calls on "bzip2" for compression |
|
|
Term
3.1 - What does the "tar J" option do? |
|
Definition
Calls for "xz" for compression |
|
|
Term
What is the argument right after the option when using the "tar" command? |
|
Definition
This is the file to be worked on |
|
|