View Single Post
Posts: 330 | Thanked: 860 times | Joined on May 2011
#3
Originally Posted by dredlok706 View Post
Hello!
...
Is the only solution flashing?
I don't know HealthCheck but you probably don't have to reflash.

Could you share the output of

Code:
$ root  #(if not yet as root)
$ mount | grep -i mydocs > /home/user/mount_output.txt
#: precedes a comment which the shell will not take count of.
mount: displays the list of mounted partitions.
|: redirects the output of mount to the following command
grep -i mydocs: filters the list, only keeping line(s) containing "mydocs", in an insensitive manner (-i) (because I am lazy)
>: sends the wole output to a file


and
Code:
$ root
$ cat /etc/fstab | grep -i mydocs > /home/user/fstab_output.txt
cat: displays the content of a text file.
/etc/fstab: the file where boot mount instructions are stored.

So you can copy /home/user/mount_output.txt and /home/user/fstab_output.txt from your N900 to your computer and copy/paste here.
__________________
Toshiba Libretto 70ct -> Psion -> Palm -> Openmoko Freerunner -> gta02 -> gta04 -> n900 n900 n900 n900
...recycled devices, hack, arduino...

Last edited by ric9K; 2021-12-31 at 09:56.