View Single Post
Posts: 165 | Thanked: 78 times | Joined on Jun 2010
#69
Originally Posted by CepiPerez View Post
sacal:
open x-term an type:

- compress a folder:
tar -czvf test.tar.gz any_folder_here (this will create a tar.gz file)
tar -cjvf test.tar.bz2 any_folder_here (this will create a tar.bz2 file)
zip test.zip any_folder_here (this will create a zip file)

- decompress:
tar -xvf test.tar.gz
tar Fxf test.tar.bz2
unzip -o test.zip

tell me how those commands work.

FileBox uses the same commands with differents arguments maybe, but not uses own compressors/decompressors.
If they work then tell me what are you trying to compress or decompress
Thanks CepiPerez for your support and fast reply

As you suggest i executed from xterm:

Code:
~ $ tar -czvf /home/user/MyDocs/test.tar /home/user/MyDocs/Comptest/
tar: removing leading '/' from member names
home/user/MyDocs/Comptest/
home/user/MyDocs/Comptest/GUID-013B5D9B-4AB8-4938-93FE-472A64BE7E63.html
home/user/MyDocs/Comptest/GUID-0D871393-7384-422F-B798-5BB17133C30B.html
home/user/MyDocs/Comptest/GUID-0DF214DC-A7E6-4930-AD35-0AD4F373290A.html
~ $ tar -czvf /home/user/MyDocs/test.tar.gz /home/user/MyDocs/Comptest/
tar: removing leading '/' from member names
home/user/MyDocs/Comptest/
home/user/MyDocs/Comptest/GUID-013B5D9B-4AB8-4938-93FE-472A64BE7E63.html
home/user/MyDocs/Comptest/GUID-0D871393-7384-422F-B798-5BB17133C30B.html
home/user/MyDocs/Comptest/GUID-0DF214DC-A7E6-4930-AD35-0AD4F373290A.html
~ $ tar -czvf /home/user/MyDocs/test.tar.bz2 /home/user/MyDocs/Comptest/ 
tar: removing leading '/' from member names
home/user/MyDocs/Comptest/
home/user/MyDocs/Comptest/GUID-013B5D9B-4AB8-4938-93FE-472A64BE7E63.html
home/user/MyDocs/Comptest/GUID-0D871393-7384-422F-B798-5BB17133C30B.html
home/user/MyDocs/Comptest/GUID-0DF214DC-A7E6-4930-AD35-0AD4F373290A.html
~ $
and 3 files test.tar, test.tar.gz and test.tar.bz2 where created in MyDocs folder.

Then i tried to create a zip archive but i got:

Code:
~ $ zip /home/user/MyDocs/test.zip /home/user/MyDocs/Comptest/             
-sh: zip: not found
In fact i don't remember to have any zip file compressor installed.

Finally i tried to decompress the archive files just created and i got:

Code:
~ $ tar -xvf /home/user/MyDocs/test.tar.gz
tar: invalid tar magic
~ $ 
~ $ tar Fxf /home/user/MyDocs/test.tar.bz2  
tar: invalid option -- F
BusyBox v1.10.2 (Debian 3:1.10.2.legal-1osso30+0m5) multi-call binary

Usage: tar -[czxtvO] [-X FILE] [-f TARFILE] [-C DIR] [FILE(s)]...

~ $
The tar version i am using is:

Code:
~ $ tar --version
tar: unrecognized option `--version'
BusyBox v1.10.2 (Debian 3:1.10.2.legal-1osso30+0m5) multi-call binary

Usage: tar -[czxtvO] [-X FILE] [-f TARFILE] [-C DIR] [FILE(s)]...

~ $
I hope this can help you diagnose the problem

Last edited by sacal; 2010-08-22 at 15:41.
 

The Following User Says Thank You to sacal For This Useful Post: