Tar error: Unexpected EOF in archive

前端 未结 5 1468
挽巷
挽巷 2021-02-13 01:49

I tar a directory full of JPEG images:

tar cvfz myarchive.tar.gz mydirectory

When I untar the archive:

tar xvfz myarchive.tar         


        
5条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-13 02:14

    May be you have ftped the file in ascii mode instead of binary mode ? If not, this might help.

    $ gunzip myarchive.tar.gz
    

    And then untar the resulting tar file using

    $ tar xvf myarchive.tar
    

    Hope this helps.

提交回复
热议问题