1

I am running Debian kFreeBSD wheezy. Accidentally I mounted my zfs pool directly into /mnt. When I try to unmount I get an error:

zfs unmount myzfspool
cannot unmount '/mnt': Device or resource busy

How could I fix that?

royskatt
  • 237

1 Answers1

4

The filesystem mounted on /mnt has open file descriptors from running processes. You normally could try an umount with the force option, but looking up those processes with "lsof /mnt" and end them is safer.

hspaans
  • 562