Hi All,
There are lots of guides online for using Samba and the like to make the contents of my RPi visible to the other computers on my network, but I can't seem to find anything going the opposite direction. I suspect it is because it's so simple that nobody but me has ever been a big enough noob to need help with it.
So, I'm looking to access files from shared folders on the windows machines elsewhere on my network. I've managed to find them through the GUI (since it's similar enough to Windows that I can fumble my way through), but I can't seem to sort it out from the command prompt. Where in the Linux file structure will I find folders stored on other computers?
Thanks,
JV
-
- Posts: 8
- Joined: Sun Apr 14, 2013 1:49 am
- tedhale
- Posts: 114
- Joined: Thu Sep 20, 2012 4:52 pm
- Location: Williamsburg, VA, USA
- Contact: Website
Re: Accessing Other Computers On the Network
the smbmount command will do what you want.
- Ted B. Hale
http://raspberrypihobbyist.blogspot.com
http://raspberrypihobbyist.blogspot.com
- DaveDriesen
- Posts: 113
- Joined: Sun Mar 31, 2013 8:28 pm
- Location: Top of the food chain
- Contact: Website
Re: Accessing Other Computers On the Network
Linux works with mount points -- similar to mapping a network drive in windows but the network location "becomes part of" your directory structure. You may be somewhat familiar with this method of mapping network locations as a similar mechanism is also available in NTFS 5.0 and up, available since Windows 2000.
The recommended way of accessing windows shares nowadays is by leveraging CIFS, something which is easily accomplished on your raspberry pi.
You can mount a windows (CIFS) drive using the mount.cifs command:where:
servername = the windows machine hosting your share
share = your windows share name
foo = your windows user name
bar = your windows password
example.local = your domain
example:I am not aware of an ad-hoc way of accessing network locations from the command line, but am also not aware of a need for one.
Good luck!
Dave Driesen
Linux dev and oldskool elite
The recommended way of accessing windows shares nowadays is by leveraging CIFS, something which is easily accomplished on your raspberry pi.
You can mount a windows (CIFS) drive using the mount.cifs command:
Code: Select all
mount.cifs //servername/share mountpoint -o username=foo,password=bar,domain=example.local
servername = the windows machine hosting your share
share = your windows share name
foo = your windows user name
bar = your windows password
example.local = your domain
example:
Code: Select all
cd /mnt
mkdir mylocalfolder
mount.cifs //192.168.1.2/Public /mnt/mylocalfolder -o username=ddriesen,password=mypassword,domain=pandemonium.local
Good luck!
Dave Driesen
Linux dev and oldskool elite
-
- Posts: 8
- Joined: Sun Apr 14, 2013 1:49 am
Re: Accessing Other Computers On the Network
Worked like a charm!
Thanks
Thanks
-
- Posts: 6
- Joined: Sat May 24, 2014 11:38 pm
Re: Accessing Other Computers On the Network
Can you (or someone) explain how you've managed to do that (for even bigger noobs like me?!)JustVisiting85 wrote:I've managed to find them through the GUI (since it's similar enough to Windows that I can fumble my way through), ...
Thanks in advance.
pp
-
- Posts: 1
- Joined: Sun Mar 25, 2018 11:30 am
Re: Accessing Other Computers On the Network
Really!?!? Nobody will answer this in the last 4 years? I am a new to the Raspberry Pi and I plan to do many things with it, but I keep running across this exact same stuff all over the internet. People everywhere will state that they succeeded in said project, but then they don't state how they did it or give steps on how it was done. Then everyone will ask how they did it, but no one will answer. I am pretty sure it is much easier to explain how something was done rather than actually doing it, so if they went through the hard work of getting it done, why not help others out by direction. I guess computer nerds are getting as bad as the rest of the world by gloating about something but not helping others.
- mahjongg
- Forum Moderator
- Posts: 13661
- Joined: Sun Mar 11, 2012 12:19 am
- Location: South Holland, The Netherlands
Re: Accessing Other Computers On the Network
actually how it works is explained in this very thread where you complained in that nobody is explaining how it works, viewtopic.php?f=91&p=1292029#p344524 which is exactly as any other linux system talks to windows systems (your "other computers") over the network.
in may 2013 (that is 5 years ago!) user JustVisiting85 already understood the explanation from DaveDriesen.
p.s. its not really helpful to start offending the very same people that could help you in your very first post.
asking questions online is easy, be polite and explain exactly the question you would like to ask, and remember the answer might be different from previous experiences you had with windows.
good luck...
in may 2013 (that is 5 years ago!) user JustVisiting85 already understood the explanation from DaveDriesen.
p.s. its not really helpful to start offending the very same people that could help you in your very first post.
asking questions online is easy, be polite and explain exactly the question you would like to ask, and remember the answer might be different from previous experiences you had with windows.
good luck...
