FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.

简介: /******************************************************************************** * FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck. * 说明: * 系统更新的时候遇到这个错误,记录一下处理步骤,其原因是我自己把其umount了 * 导致的问题。
/********************************************************************************
 *     FAT-fs  (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt.  Please run fsck.
 * 说明:
 *     系统更新的时候遇到这个错误,记录一下处理步骤,其原因是我自己把其umount了
 * 导致的问题。
 *
 *                                              2017-3-3 深圳 南山平山村 曾剑锋
 ********************************************************************************/

一、参考文档:
    1. Raspberry Pi常见问题
        http://www.alsrobot.cn/wiki/index.php/Raspberry_Pi%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98
    2. 解决树莓派Archlinux的Volume was not properly unmounted问题
        http://www.tuicool.com/articles/U3A3Ubf

二、重新挂载:
    1. mount /dev/mmcblk0p1 /mnt || mount -o remount,rw /
    2. 如上就能重新挂载上,其原因是我自己把其umount了导致的问题。

 

目录
相关文章
|
6月前
nfs之mount.nfs: Stale file handle
nfs之mount.nfs: Stale file handle
|
11月前
|
Linux
Linux - How to Take ‘Snapshot of Logical Volume and Restore’ in LVM
Linux - How to Take ‘Snapshot of Logical Volume and Restore’ in LVM
70 0
|
数据安全/隐私保护
Internal error XFS_WANT_CORRUPTED_GOTO at line 1635 of file fs/xfs/libxfs/xfs_alloc.c.
下面为解决问题中报的错误: Internal error XFS_WANT_CORRUPTED_GOTO at line 1635 of file fs/xfs/libxfs/xfs_alloc.c. Caller xfs_free_extent
261 0
Internal error XFS_WANT_CORRUPTED_GOTO at line 1635 of file fs/xfs/libxfs/xfs_alloc.c.
|
Linux 虚拟化
【Centos】 kernel panic-not syncing:VFS:Unable to mount root fs on unknown block
背景: VMware虚拟机下 原因: 在命令执行(update)途中,强制中断并直接运行poweroff命令关机。再次开机出现如图所示故障指示: 根据提示信息分析,可能因为执行更新命令未完成导致系统内核信息混乱。
3878 0