how to extract tar.bz2 file in linux code example
Example 1: unzip tar.bz2
tar -xf archive.tar.bz2
Example 2: install tar.bz2 file
#Extract the file tar.bz2
tar -xjvf file.tar.bz2
#Compile and install
cd file
./configure
make
sudo make install