Ubuntu如何挂载NTFC出现异常

Posted 陌鉎こ城sHi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu如何挂载NTFC出现异常相关的知识,希望对你有一定的参考价值。

错误信息提示

# mount /dev/sdb1 /mnt/usb
Mount is denied because the NTFS volume is already exclusively opened.
The volume may be already mounted, or another software may use it which
could be identified for example by the help of the fuser command.

遇到的问题,有进程占用硬盘,我们需要找到进程并kill

 

查看进程

# fuser -m -u /dev/sdb1
/dev/sdb1:            1977(root)

结束进程

# kill 1977

重新挂载一次

# mount /dev/sdb1 /mnt/usb

 

以上是关于Ubuntu如何挂载NTFC出现异常的主要内容,如果未能解决你的问题,请参考以下文章