Linux 挂载 NTFS 硬盘失败
报错
执行 mount -t ntfs-3g /dev/sdd1 /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.
解决
查询进程的 pid 和用户名
fuser -m -u /dev/sdd1
结束进程
kill xxxxxx
重新挂载
mount -t ntfs-3g /dev/sdd1 /mnt/usb