maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Applications (https://talk.maemo.org/forumdisplay.php?f=41)
-   -   [ANNOUNCE] FileBox - File manager with root access and more (https://talk.maemo.org/showthread.php?t=60159)

simmy 2010-08-20 22:49

Re: [ANNOUNCE] FileBox - File manager with root access and more
 
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.

CepiPerez 2010-08-21 23:26

Re: [ANNOUNCE] FileBox - File manager with root access and more
 
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.

dscobsct 2010-08-22 00:35

Re: [ANNOUNCE] FileBox - File manager with root access and more
 
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.

SavageD 2010-08-22 01:04

Re: [ANNOUNCE] FileBox - File manager with root access and more
 
By far one of the best file manager. Much faster to browse my file system now. :D

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!

sacal 2010-08-22 03:02

Re: [ANNOUNCE] FileBox - File manager with root access and more
 
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 2010-08-22 04:18

Re: [ANNOUNCE] FileBox - File manager with root access and more
 
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

adhrie 2010-08-22 04:45

Re: [ANNOUNCE] FileBox - File manager with root access and more
 
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 2010-08-22 08:40

Re: [ANNOUNCE] FileBox - File manager with root access and more
 
mine does'n need z for tar.gz when decompress
seems the problem is the tar binary
what's the tar version?
tar --version

sacal 2010-08-22 15:33

Re: [ANNOUNCE] FileBox - File manager with root access and more
 
Quote:

Originally Posted by CepiPerez (Post 794581)
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

adhrie 2010-08-22 15:58

Re: [ANNOUNCE] FileBox - File manager with root access and more
 
getting the same output as sacal for
tar --version


All times are GMT. The time now is 09:06.

vBulletin® Version 3.8.8