4.64 (add to lab)

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/8

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 4:35 PM on 7/16/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

9 Terms

1
New cards

what is the purpose of Tar

It takes files and puts them in a container.

The purpose of tar (short for Tape Archive) in Linux is to bundle multiple files and directories into a single file, commonly called a "tarball". It is primarily used for data backups, system archiving, and software distribution, preserving critical Unix file metadata like permissions and directory structures

2
New cards

Tar command does not

compress or reduce the size of files

3
New cards

what does gzip do?

compresses a file

4
New cards

what does gunzip do

de-compresses a file

5
New cards

command used to create a new uncompressed archive file from a collection of files or directories

tar cvf <archivefilename.tar> /path/to/file

6
New cards

untar it

tar xvf <filename.tar>

7
New cards

compress the tar file you made

gzip <file.tar>

8
New cards

uncompress a file

gunzip <file>

9
New cards

force remove a directory

rm -rf <directoryname>