====== How to extract tar.bz2 files ====== GNU tar supports a -j flag, which allows extraction of tar.bz2 files without a pipeline: tar -xvjf archivefile.tar.bz2 ---- Inside DSM-G600 you can't use -j flag, so there you must use a pipeline: /mnt/HD_a2/bzcat archivefile.tar.bz2 | /mnt/HD_a2/tar -xvf - //bzcat is symlink to bzip2.// ---- In windows you can use number of different software to extract tar.bz2 files: [[http://www.7-zip.org/|7Zip]] (GUI based free extractor), [[http://gnuwin32.sourceforge.net/packages/bzip2.htm|bzip2]]+[[http://gnuwin32.sourceforge.net/packages/tar.htm|tar]] for windows [[http://cgpgroup.com/index.asp?PgToLd=WBZIP2|wbzip2]] with GUI and [[http://www.rarlab.com/|WinRAR]].