Active Topics

 



Notices


Reply
Thread Tools
Posts: 21 | Thanked: 10 times | Joined on Jun 2010 @ vancouver washington usa
#61
Could you make it work like symbian for navigating files? If you use the right arrow to open highlighted folder and left arrow to go one folder up then it would be like the old symbian file managers. Very fast and efficient.
 

The Following User Says Thank You to simmy For This Useful Post:
CepiPerez's Avatar
Posts: 1,023 | Thanked: 4,421 times | Joined on Feb 2010 @ Argentina
#62
Uploaded version 0.4-5 to extras-devel
Now you can decompress tar, tar.gz, tar.bz2 and zip files using filebox

Please make some test for this.
If it works 100% I'll promote the package to extras-testing.
 

The Following User Says Thank You to CepiPerez For This Useful Post:
dscobsct's Avatar
Posts: 263 | Thanked: 231 times | Joined on Feb 2010 @ wales
#63
is there any chance of auto closing the confirmation boxes after copying a file has finished rather than having to press close, have been using filebox for some intense modding and it is quite annoying after a while.
__________________
my home on the net is symbian-freak/maemo-freak dot com.
come and visit
 

The Following User Says Thank You to dscobsct For This Useful Post:
Posts: 436 | Thanked: 406 times | Joined on Jan 2010
#64
By far one of the best file manager. Much faster to browse my file system now.

I have just two requests, can there be an 'open with' feature: should save the problem of having to manually add text editors and stuff.

Also can there be an option to enable 'marking' faster. For example you touch an icon on the side (like where 'settings' icon is located) it enables marking, touch again, it disables marking. Should make browsing much faster than double tapping.

And again thanks for such an awesome filemanager!
 

The Following 3 Users Say Thank You to SavageD For This Useful Post:
Posts: 165 | Thanked: 78 times | Joined on Jun 2010
#65
CepiPerez

Thanks again for your work.

I must have something missing.

I can only compress and decompress tar files.

I can create tar and tar.gz files. However when i try to decompress tar.gz no files are listed in the extract files screen and the size is 0bytes.

tar.bz2 and zip files i can't either compress or decompress.
For instance when i try to create a zip file the compressing screen says finished the progress bar is at 0% and no zip file is crested.

I have bzip2 installed.
 
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:
Posts: 118 | Thanked: 39 times | Joined on Apr 2010 @ Jakarta, Indonesia
#67
installed the latest update & getting the same problem as sacal

trying to decompress in x term using

tar -xvf thefiles.tar.gz

and get the following response

tar: invalid tar magic

it works if i use

tar -xzvf thefiles.tar.gz
 
CepiPerez's Avatar
Posts: 1,023 | Thanked: 4,421 times | Joined on Feb 2010 @ Argentina
#68
mine does'n need z for tar.gz when decompress
seems the problem is the tar binary
what's the tar version?
tar --version
 
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:
Posts: 118 | Thanked: 39 times | Joined on Apr 2010 @ Jakarta, Indonesia
#70
getting the same output as sacal for
tar --version
 
Reply

Tags
file manager, filebox


 
Forum Jump


All times are GMT. The time now is 21:56.