由于磁盘断开而挂起umount时如何卸载?


6

我有一个通过USB连接的外部磁盘,意外断开了连接。现在ls,将其安装到的目录给出Input/output errorumount该目录只是挂起。dmesg仅包含:

[3360010.363235] usb 2-1.1: USB disconnect, device number 3

我该如何解决此问题(缺少重新启动),即在不干净地断开外部存储设备的连接时如何清理内核状态?

Answers:


11

懒惰卸载通常可以解决问题。

sudo umount -l /path/where/its/mounted

有关更多信息,请尝试man umount


1
就我而言,这也永远挂起(无法访问的NFS系统)。现在我有6个开放的终端,所有的umount组合-f-l无限地悬挂。
Hubro

2

您还应该能够

sudo umount -f /path/to/mount

来自man umount

   -f     Force unmount (in case of an unreachable NFS system).  (Requires
          kernel 2.1.116 or later.)

2
我尝试了此操作,因为它听起来很适合我的用例(无法访问的NFS系统),但它也永远挂起,就像没有了一样-f
Hubro

@Hubro尝试重新启动网络服务,这可能会迫使其卸载。
terdon

下次再试一下。这次我不得不重新启动。
哈博
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.