View Single Post
Posts: 2,102 | Thanked: 1,937 times | Joined on Sep 2008 @ Berlin, Germany
#20
Try fsck after unmounting the partition. First find out the partition to check
Code:
mount
This will list every mounted partition and folder. Identify the partition mounted at /home/user/MyDocs, may be /dev/mmcblk0p1, the default.
Unmount the partition
Code:
umount /dev/mmcblk0p1 #OrYourPartitonHere
Check the file system
Code:
fsck -af /dev/mmcblk0p1
Fsck should identify the file system type.
Then, if everything goes well, mount it back to its place
Code:
mount /home/user/MyDocs
 

The Following 2 Users Say Thank You to michaaa62 For This Useful Post: