You can use the following shell command to extract:
tar xvjf filename.bz2
This would also extract:
tar xvjf filename.tar.bz2
Here,
tar - Tape ARchiver
And the options:
x - extract
v - verbose output (lists all files as they are extracted)
j - deal with bzipped file
f - read from a file, rather than a tape device
You can use the following shell command to extract:
This would also extract:
Here,
tar - Tape ARchiver
And the options:
x - extract
v - verbose output (lists all files as they are extracted)
j - deal with bzipped file
f - read from a file, rather than a tape device
"tar --help" gives more options and info.
Post your Answer