How to unzip a .bz2 file with tar command in Ubuntu Linux
You can easily unzip .tar.bz2 files using command line
tar -xvjpf filename.tar.bz2
Or
You can use bunzip2 for unziping and usr normal tar command
This command will only work if you have already bunzip2 installed.
bunzip2 filename.bz2
No comments:
Post a Comment