先用df -h 找到相应的硬盘挂载点。
有可能在远程遇到解决类似umount target is busy挂载盘卸载不掉问题
用https://www.cnblogs.com/ding2016/p/9605526.html 提供的如下办法:
方法二、通过lsof命令处理
[root@server-10 ~]# lsof /mnt/ COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME bash 16302 root cwd DIR 8,17 50 64 /mnt
找到相应的PID kill 掉。
在用umount -v /dev/sde umount 相应的硬盘。