Extract tar the tar.bz2 file error

前端 未结 8 1109
后悔当初
后悔当初 2021-02-03 18:05

I tried to extract the tar.bz2 file in Fedora 17 OS. I used the command:

# tar -xvjf myfile.tar.bz2

I received this error message:

         


        
8条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-03 18:25

    This worked for my file:

    binutils-2.15.tar.bz2 (Found at http://ftp.gnu.org/gnu/binutils/)

    bunzip2 your-tar-file.tar.bz2
    

    Your file now looks like this:

    your-tar-file.tar

    tar xvf your-tar-file.tar
    

    File will finish extracting

提交回复
热议问题