![]() |
2008-02-10
, 04:08
|
|
Posts: 643 |
Thanked: 628 times |
Joined on Mar 2007
@ Seattle (or thereabouts)
|
#2
|
The Following User Says Thank You to Johnx For This Useful Post: | ||
![]() |
2008-02-10
, 09:53
|
|
Posts: 1,648 |
Thanked: 2,122 times |
Joined on Mar 2007
@ UNKLE's Never Never Land
|
#3
|
After much searching, I concluded that there just isn't a GUI file manager for OS2008 that displays hidden files (which seems quite absurd to me, but I digress..). So I decided to do something about it.
![]() |
2008-02-10
, 12:15
|
Posts: 25 |
Thanked: 8 times |
Joined on Feb 2008
|
#4
|
Have you noticed the emelFM2? http://maemo.org/downloads/product/OS2008/emelfm2/
I shows hidden files and more..
![]() |
2008-02-10
, 12:16
|
Posts: 25 |
Thanked: 8 times |
Joined on Feb 2008
|
#5
|
I think it might take a fair amount of effort to get all the -dev packages (that contain development headers) installed. You might just want to grab the vmware maemo sdk: http://maemovmware.garage.maemo.org/
![]() |
2008-02-10
, 12:33
|
|
Posts: 282 |
Thanked: 69 times |
Joined on Dec 2007
@ Penniless Park, Fla.
|
#6
|
![]() |
2008-02-10
, 13:07
|
Posts: 25 |
Thanked: 8 times |
Joined on Feb 2008
|
#7
|
maemo@maemo-sdk:~$ diff gpe-filemanager-2.8+maemo+svn20080114-1/main.c gpe-filemanager-2.8+maemo+svn20080114-1h/main.c 1231c1231,1232 < if (vfs_file_info->name != NULL && vfs_file_info->name[0] != '.') --- > //if (vfs_file_info->name != NULL && vfs_file_info->name[0] != '.') <-- Hiding hidden files in a file manager; evil! > if (vfs_file_info->name != NULL)
![]() |
2008-02-10
, 19:13
|
Posts: 25 |
Thanked: 8 times |
Joined on Feb 2008
|
#8
|
![]() |
2008-02-15
, 02:31
|
Posts: 25 |
Thanked: 8 times |
Joined on Feb 2008
|
#9
|
The Following User Says Thank You to SpiritGeek For This Useful Post: | ||
![]() |
2009-01-18
, 13:14
|
Posts: 31 |
Thanked: 1 time |
Joined on Jan 2009
|
#10
|
Of the ones I've looked at, I like GPE File Manager best. So I got the source, tracked down the evil bit of code that was filtering hidden files, and snipped it out. So far, so good.
Now I need to re-compile the binary to replace the old one. But I don't have a desktop Linux system handy to try to set up the development environment. Alas!
So, since the N810 is a Linux system after all, I'm wondering if it's possible to set up the necessary components to re-compile this thing on the device itself? I'm afraid my background is mostly in high-level languages, so all this C stuff is somewhat mystifying to me (I took ANSI C 101, but it was long, long ago [pre-Linux!]).
If it's not possible, does anyone have a suggestion for the best way to proceed?
Thanks!