Using Mount Command With Mac OS

From Littledamien Wiki
Revision as of 12:55, 12 March 2016 by Video8 (talk | contribs) (Created page with "Category:Mac OS == Applications == This is a more convenient and reliable way to access shared drives with Git. == Co...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Applications

This is a more convenient and reliable way to access shared drives with Git.

Commands

Mount a remote share

For a Windows share, use the -t smbfs option.

$ mount -t smbfs //user:password@server/share_name path/to/mount

Note that a share cannot be mounted twice. If it's already mounted somewhere the mount command will result in an error to the effect of mount error: path/to/mount: File exists See the df command below to troubleshoot these situations.

Unmount

$ umount path/to/mount

View all the current mounts

$ df