umount /data 时报错 the device is found by lsof(8) or fuser(1)
解决方法:
yum install psmisc -y
fuser -m /data #需要查看是哪些进程正在占用,将其结束掉
killall -9 xxxxx #进程名称
kill -9 xxxxx #进程id
然后umount
umount /data
umount /data 时报错 the device is found by lsof(8) or fuser(1)
解决方法:
yum install psmisc -y
fuser -m /data #需要查看是哪些进程正在占用,将其结束掉
killall -9 xxxxx #进程名称
kill -9 xxxxx #进程id
然后umount
umount /data