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
~ $ 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 ~ $
~ $ zip /home/user/MyDocs/test.zip /home/user/MyDocs/Comptest/ -sh: zip: not found
~ $ 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)]... ~ $
~ $ 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)]... ~ $