• NTFS磁盘打开提示:无法访问,文件或目录损坏!ubunut下提示failed to mount


    问题现象

    Message:

    Error mounting: mount exited with exit code 13: $MFTMirr does not match $MFT (record 0).
    Failed to mount '/dev/sdf3': Input/output error
    NTFS is either inconsistent, or there is a hardware fault, or it's a
    SoftRAID/FakeRAID hardware. In the first case run chkdsk /f on Windows
    then reboot into Windows twice. The usage of the /f parameter is very
    important! If the device is a SoftRAID/FakeRAID then first activate
    it and mount a different device under the /dev/mapper/ directory, (e.g.
    /dev/mapper/nvidia_eahaabcc1). Please see the 'dmraid' documentation

    for more details.

    原因

    This error usually when computer is switched of either in the middle of startup or shutdown. Then it doesn't mount NTFS drives in ubunt

    解决方法

    Going back to windows and running chkdsk /f (example chkdsk e: /f) solves all the problem.

    Since you don't 've windows anymore. You need to install ntfs tools in ubuntu

    Code:
    $ sudo apt-get install ntfsprogs This package has a nice collection of tool for ntfs drives. To fix your problem let's say your drive is /dev/sdf3

    Code:
    $ sudo ntfsfix /dev/sdf3 This should fix the disk. Reboot after this.

    I shall add make sure your extension is the right one you can find this on the original error message you got.

    https://blog.csdn.net/zangcf/article/details/22900583?locationNum=9

  • 相关阅读:
    xml解析模块
    python面向对象基础
    python hashlib模块
    os和sys模块
    python反射
    正则表达式re模块
    踩的python列表及for循环一个坑儿
    python序列化模块json和pickle
    python时间模块-time和datetime
    64匹马、8赛道,至少多少轮比赛找出速度最快的4匹马?
  • 原文地址:https://www.cnblogs.com/dLarger/p/13856803.html
Copyright © 2020-2023  润新知