0

I use to have a Linux server that I had shares on, and I had them mounted on my OS X machine, but I no longer have this server and the shares are still there and they will not unmount (and even force unmounting them does nothing). Is there anything I can do in the command line to remove them?

1 Answers1

0

Try

diskutil unmount /path_to_mount_point

For example, to unmount a USB key on my system, I would do:

diskutil unmount /Volumes/myUSB

You may also need to include sudo before the command.

aqua
  • 493