The Following 2 Users Say Thank You to michaaa62 For This Useful Post: | ||
![]() |
2011-05-08
, 20:12
|
|
Posts: 623 |
Thanked: 289 times |
Joined on Jan 2010
@ UK
|
#22
|
![]() |
2011-05-08
, 20:22
|
Posts: 20 |
Thanked: 0 times |
Joined on May 2011
|
#23
|
Although i remember giving all the code in a couple of threads to sort things, i don't know which exact errors you are facing. There are is a way to get around the shortage of internet access from the N900 itself.
Try to redirect the output of the commands to a text file, copy this file to your pc, then paste its content here.This would give you root rights, then unmounts the MyDocs partition, redirects (>) the output of the fsck commant to the output.txt file and finally append (>>) the output of the mount command to output.txt file also.Code:sudo gainroot umount /dev/mmcblk0p1 fsck -af /dev/mmcblk0p1 > output.txt mount /dev/mmcblk0p1 /home/user/MyDocs >> output.txt
Accordingly the codeblock for those debugging commands would beCode:mount > debug.txt df -h >> debug.txt ls -al /home >> debug.txt sudo gainroot sfdisk -l >> debug.txt
![]() |
2011-05-08
, 20:26
|
Posts: 20 |
Thanked: 0 times |
Joined on May 2011
|
#24
|
![]() |
2011-05-08
, 20:28
|
Posts: 2,102 |
Thanked: 1,937 times |
Joined on Sep 2008
@ Berlin, Germany
|
#25
|
# fsck -af /dev/mmcblk0p1
fsck 1.41.3.maemo0 (12-Oct-2008)
dosfsck 2.11, 12 Mar 2005, FAT 32, LFN
/dev/mmcblk0p1: 6020 files, 384378/442377 clusters
The Following User Says Thank You to michaaa62 For This Useful Post: | ||
![]() |
2011-05-08
, 20:39
|
Posts: 20 |
Thanked: 0 times |
Joined on May 2011
|
#26
|
![]() |
2011-05-08
, 20:42
|
|
Posts: 623 |
Thanked: 289 times |
Joined on Jan 2010
@ UK
|
#27
|
cp -r /home/user/.osso-abook-backup/ /home/user/.osso-abook/
![]() |
2011-05-08
, 20:57
|
Posts: 20 |
Thanked: 0 times |
Joined on May 2011
|
#28
|
![]() |
2011-05-08
, 21:12
|
|
Posts: 623 |
Thanked: 289 times |
Joined on Jan 2010
@ UK
|
#29
|
The Following User Says Thank You to JonWW For This Useful Post: | ||
![]() |
2011-05-08
, 21:21
|
Posts: 20 |
Thanked: 0 times |
Joined on May 2011
|
#30
|
I doubt you'll be able to find out why it happened. I would reflash because everything will be back to factory deflaults and if it crashes again then it could indicate youl have a hardware problem.
Also, it's good to know how to reflash, there's nothing to worry about and it will format the corrupted drive.
Try to redirect the output of the commands to a text file, copy this file to your pc, then paste its content here.
Accordingly the codeblock for those debugging commands would be