How do I navigate in the terminal to a Windows network share?

I can access the Windows work-group using the GUI but I would like to get there in bash.

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

Try looking in ~/.gvfs.

link|improve this answer
feedback

You could install smbfs and mount a Windows network share using smbmount. This way you won't need to connect to the Winodows share with the UI before accessing it.

sudo apt-get install smbfs
man smbmount
link|improve this answer
feedback

Those share folders are supposed to be mounted at /media, so just do ls /media and find your windows share folder name, and you could just use that share folder /media/something as normal file system.

You could also check mount points with df command also.

link|improve this answer
Tried ls /media with -lha and found no network shares. Also looked in mnt with no luck. – nicorellius May 24 '10 at 3:22
feedback

Your Answer

 
or
required, but never shown

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