View Single Post
ace's Avatar
Posts: 296 | Thanked: 80 times | Joined on Dec 2007
#2
The filesystems's probably being mounted readonly due to errors. Run "mount" in a terminal and look for the readonly flag (ro).

I believe N810's had a problem with the internal memory being partitioned incorrectly from the factory, which leads to corruption. Search the forums.

If that's not the problem, run a filesystem check on it.

In Linux, you'd do something like this (as root):
Code:
umount /media/mmc2
fsck.vfat -r /dev/mmcblk0p1
mount /dev/mmcblk0p1 /media/mmc2
Alternately, "mount -o remount,rw /media/mmc2" will change the filesystems to read-write without the check.

Good luck.