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了
 * 导致的问题。
 *
 *                                              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了导致的问题。