Aug
26
.tar.bz2 Are files that have been bzipped using the bzip utility, bzip is also a data compression program just like gzip , although it is more efficient but not widely used, bzip2 is the newer version built upon bzip
If you encounter a bzip files then you can easily untar or extract it using following command
tar -xvjf filename
or you can break it in two steps
1st unzip (or unbzip)
bunzip2 filename.tar.bz2
now untar like the normal way
tar -xf filename.tar
Related posts:
- du command in linux du command in Linux is used too check the amount...
- Command to Change Drive in DOS I always thought that I was a command line guru...
- Way to unzip files from SSH Telnet FTP ? Yes you can unpack a tar archive which has gz...
- Karaoke: How to remove vocals from a song and extract music The other day someone request me to remove vocals for...
- Creating Tar.gz files in Windows You can open and extract the content from gzipped in...
- How to delete protected vista files from XP by booting to windows XP I was trying to free...
no comment untill now