zoukankan      html  css  js  c++  java
  • Error mounting / dev / sdb1 in Ubuntu

    Uncommon users of Ubuntu OS, when connecting USB with NTFS file system, can observe the error: "Error mounting / dev / sdb1" or "Failed to mount '/ dev / sdb1': Input / output error".

    The cad file in the NTFS system has a corresponding entry in the MFT (Master File Table). NTFS reserves the first 16 MFT records for storing special information. The first entry describes directly the MFT itself, followed by a description of the backup MFT mirror record. If the first MFT record is corrupted, NTFS will read the second entry to find the MFT mirror, the first record of which is identical to the first entry in the MFT. The location of the MFT and MFT mirror is spelled out in the boot sector of the disk. 
    Source: NTFS.com

    After incorrect extraction of the USB disk, a power failure, and for other reasons, the MFT may be damaged and the first MFT mirror entry will not match the first MFT record.

    The utility ntfsfix will help to solve the problem 

    sudo ntfsfix /dev/sdb1


    * / dev / sdb1 - you need to specify the section that is mentioned in the error text.

    If the ntfsfix utility is not available, you can install it with the ntfs-3g package :

    sudo apt-get install ntfs-3g

    After using ntfsfix, the initialization data on the device will be restored as well as access to the USB device.

    参考自:http://www.rebelcode.ru/linux/error-mounting-devsdb1-v-ubuntu/

  • 相关阅读:
    IntelliJ如何设置自动导包
    203.数的表示
    202.磁悬浮动力系统应用研究与模型搭建
    201.一种六磁子交通系统
    200.软件工程_期末_李振宏老师
    199.维护
    SSH学习-Struts2中的session
    SSH学习-Struts2消息传递机制
    SSH学习-struts2配置基本步骤
    云笔记项目-MyBatis关联映射查询
  • 原文地址:https://www.cnblogs.com/linweilin/p/9431046.html
Copyright © 2011-2022 走看看