View Single Post
CepiPerez's Avatar
Posts: 1,023 | Thanked: 4,421 times | Joined on Feb 2010 @ Argentina
#66
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
 

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