How do I unmount a network volume?

NSWorkspace thinks they're neither removable nor unmountable. unmountAndEjectDeviceAtPath: @"/Volumes/the network volume in question" causes nothing whatsoever to happen. There's probably some easy way to do this, sitting right under my nose, but I can't find it.

I don't want to resort to making an Applescript telling the Finder to Eject network volumes and calling it from Cocoa because that's just incredibly icky.

(my dev platform is Tiger, by the way)

link|improve this question
Are you trying to programmatically unmount the device in Objective-C? If so, please make that clearer in your question, since your question does not really read like a programming question right now. – Matt Ball Sep 27 '11 at 0:49
feedback

1 Answer

up vote 0 down vote accepted

Is calling unmount(2) fair-game? (How odd, most Unix systems name the system call umount(), not unmount(), and the manpage frequently calls it umount() despite the name and Synopsis sections fairly clearly using unmount().)

Is the mount in use by anything else? Check lsof(1) or fuser(1) output to see which processes, if any, have that filesystem currently open. (Maybe adding a simple chdir("/"); just before your unmount call would do it?)

link|improve this answer
Yes! Thank you! unmount("/Volumes/theVolume",0) works flawlessly. Easy and right under my nose indeed. Duh. After reading your answer I also discovered that the terminal commands umount /Volumes/theVolume or simply umount theVolume also work and could be executed through Cocoa using NSTask, but unmount() is much neater. Stupid NSWorkspace. Sheesh. – user512530 Sep 28 '11 at 0:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.