4
1
I backup lots of gigebytes files in to myproject.tar.gz, and compress success without errors. Now, I want to decompress all to an folder "myprojects".
adan@adan-Latitude-D630:~$ tar zxf myproject.tar.gz -C myprojects/
tar: myproject/androidsource/prebuilts/ndk/current: Cannot create symlink to ‘8’: File exists
tar: myproject/androidsource/uboot/include/configs/amlogic: Cannot open : File exists
tar: Exiting with failure status due to previous errors
It is my first decompression, and the folder is empty, I am sure the file is not exist in "myprojects" folder when decompressing, why are these errors happened? how to uncompress my backup file without errors? Could I ingnore it without any harmful?
thanks for your help.
Are you possibly untarring it to a filesystem that does not support symbolic links? – Raúl Salinas-Monteagudo – 2014-10-24T08:16:22.483
Sounds like the tar file has duplicate entries for some names. Show how you created the file. – Barmar – 2014-04-26T22:10:30.490
I create the tar file using gnome package manager. right click the target folder, and compressed it. – gladman – 2014-04-29T08:44:45.170