zoukankan      html  css  js  c++  java
  • 解决Ubuntu不能挂载ntfs格式硬盘

    以前都是自动可以挂在NTFS硬盘的,可是现在不能挂载了。搜了一下 这里有办法 http://forum.ubuntu.org.cn/viewtopic.php?t=313930

    例如你是

    Error mounting /dev/sdc10 at /media/rudy/info: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000" "/dev/sdc10" "/media/rudy/info"' exited with non-zero exit status 14: The disk contains an unclean file system (0, 0).
    Metadata kept in Windows cache, refused to mount.
    Failed to mount '/dev/sdc10': 不允许的操作
    The NTFS partition is in an unsafe state. Please resume and shutdown
    Windows fully (no hibernation or fast restarting), or mount the volume
    read-only with the 'ro' mount option.

    这个 /dev/sdc10不能挂在

    那么在终端下执行

    sudo ntfsfix /dev/sdc10 

     结果出现 以下表示成功

    NTFS partition /dev/sdc10 was processed successfully.

    如果没有ntfsfix,可以先安装一下,默认15.10自带这个工具 

  • 相关阅读:
    C++ 对象没有显式初始化
    NFA与DFA
    VS DLL 复制本地
    TFS 图标意思
    C++ 析构方法
    C++ 异常
    【转】二叉树的非递归遍历
    【转】Dijkstra算法(单源最短路径)
    Dijkstra最短路径算法
    python __name__
  • 原文地址:https://www.cnblogs.com/or2-/p/4945828.html
Copyright © 2011-2022 走看看