Computing Staff
  • 1

How To Install A .Bz2 File In Solaris

  • 1

Hi,
I have downloaded the sourcenavigator-NG 4.3.tar.bz2 and when i tried to install it on my solaris “S10 U 8” OS.
i gave the following command:
tar -jxvf sourcenavigator-NG 4.3.tar.bz2

getting the following errors:
tar: j: unknown function modifier
usage: tar {c|r|t|u|x}[BDeEFhilmnoPqTvw@[0-7]][bfk][x…] [blocksize] [tarfile]
[size] [exclude-file…] {file | -I include-file | -c directory file}…

Share

1 Answer

  1. You can also use this in the first place:
    bzip2 -d sourcenavigator-NG 4.3.tar.bz2
    and then untar it:
    tar -xfv sourcenavigator-NG 4.3.tar

    Should work for you.

    • 0