How to access a shared drive from the command prompt on OS X

12

2

I have a shared drive called "music". It shows up in Finder without problems.

How do I access this from the command prompt on a Mac? I can't find it anywhere – is there a way to access it?

some1

Posted 2012-02-29T00:47:42.510

Reputation: 454

Where is it physically located? Another partition? Another computer? NAS? Online library? What's the path? – Raystafarian – 2012-02-29T13:08:46.740

Answers

17

If a network share is already mounted in the Finder, it will be accessible through /Volumes in a shell, e.g. if your share is called "music", you'll find it under:

/Volumes/music

If you still need to mount it, you can actually mount it wherever you like — ideally not to /Volumes, but for example on your desktop. You can use mount_smbfs to do so. The complete syntax would be like this:

mount_smbfs //[domain;][user[:password]@]server[/share] ~/Desktop/music

In your case, if you have no special login and just guest credentials, maybe the following is enough – when prompted for a password, you can just press Enter and skip it:

mkdir -p ~/Desktop/music
mount_smbfs //host/music ~/Desktop/music

… and voilà:

enter image description here

If you have a user and password, you could use //user@host/music, and then enter the password interactively.

To safely unmount it, just call the following:

umount ~/Desktop/music/

slhck

Posted 2012-02-29T00:47:42.510

Reputation: 182 472

When I try this I get: mount_smbfs: server connection failed: Cannot allocate memory – Rooster242 – 2013-08-30T03:25:17.817

0

I have to test this on my Mac, but this article explains using the smbclient to execute what you need.

Take a look over here.

In a nutshell:

$ smbclient -U user -I 192.168.0.105 -L //smbshare/

Carlos

Posted 2012-02-29T00:47:42.510

Reputation: 799