Extraire un fichier *.tar.bz2?

J'ai toujours utilisé cette commande pour extraire des fichiers d'une boule de goudron bzip2:

tar xjvf file.tar.bz2

Mais en ce moment sur Ubuntu 14.04, j'obtiens cette erreur:

tar: Conflicting compression options
Try 'tar --help' or 'tar --usage' for more information.

Quelque chose a-t-il changé ou est-ce un bug?

EDIT: Je pense qu'il pourrait y avoir un bug. J'ai juste essayé de le parcourir d'abord bunzip2, puis d'extraire tout de la boule de goudron résultante, et j'ai obtenu ceci:

$ tar xvf file.tar
tar (child): pbzip2: Cannot exec: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now

EDIT2: Voici ce que je reçois après l'installation pbzip2:

$ tar xf file.tar
pbzip2: producer_decompress: *ERROR: when reading bzip2 input stream
Terminator thread: premature exit requested - quitting...
tar: Child returned status 1
tar: Error is not recoverable: exiting now
demandé sur