当我试图挂载一些SD卡时,它会失败,dmesg会显示:
[ 124.121735] FAT-fs (sdb1): Volume was not properly unmounted.
Some data may be corrupt. Please run fsck.。
发布于 2015-05-08 00:01:41
(V)脂肪没有-o force 安装选项。一个安全的替代方法是对sdcard进行映像,然后在图像上执行fsck。
dd if=/dev/sdb1 of=~/sdcard.image
dosfsck -l -w -a -r -v -t ~/sdcard.image
mount -t vfat -o loop,ro ~/sdcard.image /mnt/sdcardhttps://unix.stackexchange.com/questions/200190
复制相似问题