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.

link|improve this question
Mounted disks are located under /Volumes, e.g. cd /Volumes/MySharedVolume. Belongs on superuser.com BTW. – Paul R Jul 15 '10 at 14:50
Possible Duplicate: superuser.com/questions/159349/… – Chealion Jul 17 '10 at 2:27
feedback

migrated from stackoverflow.com Jul 17 '10 at 0:53

This question came from our site for professional and enthusiast programmers.

4 Answers

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.

link|improve this answer
feedback
cd /Volumes

there you will find all mounted volumes. There will also be the network-volumes.

link|improve this answer
Thanks very much! that did exactly the trick. Are there any good reference I could use in future? – Mark McDonnell Jul 15 '10 at 16:03
I'm sorry - I do not know any websites about questions like this one – Erik Jul 16 '10 at 21:03
Mark, if this answers your question, please "accept" it. – Chris Page Aug 21 '11 at 10:52
feedback

Have a look in your root directory under Volumes.

link|improve this answer
feedback

Use command df to show all mounted volume.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown