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?
Asked
Active
Viewed 1,959 times
1 Answers
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