use the device is found by lsof(8) or fuser(1).

бывает такое, когда примонтировал (ручками) и потом система не дает отмонтировать

root@hp:~# umount /mnt/sys64/
umount: /mnt/sys64: device is busy.
(In some cases useful info about processes that use
the device is found by lsof(8) or fuser(1))

смотрим кто использует маунт
lsof | grep /mnt/sys64

# lsof | grep /mnt/a64
faked 7824 nk cwd DIR 8,8 4096 13426808 /mnt/a64/mnt/sda8/pub/tmp/KDE4/kde-build/kde-baseapps
faked 7824 nk rtd DIR 8,11 4096 2 /mnt/a64
faked 7824 nk txt REG 8,11 19360 810103 /mnt/a64/usr/bin/faked
faked 7824 nk mem REG 8,11 1416496 35 /mnt/a64/

убиваем этот процесс
и дисмаунтим через umount /path

Scroll to top