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/

最新文章

  1. Notes: DOM Range
  2. Lamp搭建bugfree
  3. C#创建文件夹
  4. 使用原生JS封装Ajax
  5. 【解决】SAE部署Django1.6+MySQL
  6. homework-02,第二次作业——寻找矩阵最大子序列和
  7. Mina的线程模型
  8. GitHub-修改以下host-ip可加快访问速度
  9. Kali Linux2018 上安装open-vm-tools实现虚拟机交互
  10. WebSocket异步通讯,实时返回数据
  11. shiro-过滤器
  12. [ci]jenkins构建容器项目java-helloworld-非docker plugin模式
  13. python 算法面试题
  14. 启动bash shell的三种方式下,检查的启动文件
  15. 后端程序员如何玩转AJAX
  16. Android中Application是什么?
  17. [AtCoder ARC103A]/\/\/\/
  18. Cocos2dx如何引用第三方SO文件(Android NDK)
  19. Three入门学习笔记整理
  20. 个人永久性免费-Excel催化剂功能第56波-获取Excel对象属性相关自定义函数

热门文章

  1. 封装一个简单的Hibernate SessionFactory
  2. 自定义EL函数、自定义JSTL标签
  3. L100
  4. Execution Context(EC) in ECMAScript
  5. Mex混合编程专题二:MEX Hello Word
  6. ACM学习历程—广东工业大学2016校赛决赛-网络赛D 二叉树的中序遍历(数据结构)
  7. ACM学习历程—HDU1695 GCD(容斥原理 || 莫比乌斯)
  8. POJ3784:Running Median
  9. BZOJ1345:[Baltic2007]序列问题
  10. Poj1062 昂贵的聘礼 (dijkstra算法)