View Single Post
Posts: 2,102 | Thanked: 1,937 times | Joined on Sep 2008 @ Berlin, Germany
#78
If you have data on the device, that you want to get back do a file system check on the partition.
You need rootsh package installed to get this working:
Code:
sudo gainroot
umount /dev/mmcblk0p1 # This might give you a neglectable error 
fsck -af /dev/mmcblk0p1
mount /dev/mmcblk0p1 /home/user/MyDocs
If you have no data on the device you might format the partition with a fresh file system. Again you need rootsh installed.
Code:
sudo gainroot 
mkfs.vfat -n MyDocs /dev/mmcblk0p1
Please post the complete error message, if any error occur.
 

The Following User Says Thank You to michaaa62 For This Useful Post: