I guess about the fact that Firefox 8beta can't write/read work ... whatever for the most people so there seems to be some trouble with missing rights in combination with the appdata folder for these operations? :unsure:
No, the problem is with FireFox.
I've ported the very first version, and I had to make some hacks to get it working.
Basically, when you start FireFox, it creates a session file and sets certain permissions to it.
The Linux version doesn't expect to run on FAT32, as no Linux uses FAT32.
Therefore, if you use the Linux version with a FAT32 card, it can't set the permissions.
The real fix would be to remove that directly in the sourcecode.
My solution back then was a very evil hack:
Code:
ln -s /mnt/utmp/firefox/settings/ ~/.mozilla
./firefox
rm ~/.mozilla
With this hacked code, FireFox places the session file in /mnt/utmp/firefox/settings/ , which is a Linux overlay file system.
It created a symbolic link on your SD Card each time you started it and then removed it again.
I did the same with Fennec. However, with the new pnd_run-script that moves $HOME away from home
, it probably doesn't work anymore as well.
[/CODE]