Macos – Accessing shared directory path in Mac OS X Terminal

macmacosterminal

I'm trying to access a shared network server via terminal on the Mac.

I can obviously access directories on the same system using just the command cd (e.g. cd /Applications) but our shared network I just can't work out how to get to?

I'm starting to wonder if it's a security issue that would prevent a user from seeing/accessing it.

Best Answer

I suspect the volume has to be mounted first before you'll be able to acces it.

% cd /Volumes/[you server/volume name here]/Users/Shared/

Or you should use ssh.

Related Question