Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can I browse Windows machines from Linux 1

Status
Not open for further replies.

newbiepg

Programmer
Nov 6, 2002
181
IN
I have a Linux machine in a network which has several windows
machines. Is it possible to browse through the shared folders of the windows machines from Linux?

 
Yes,

you have to mount the windows share you need to connect to.

Example:
create the directory /mnt/samba on your linux box
to connect to the share called 'open' on a windows box called 'hydra' with ip address 192.168.0.1 you would do this

mount -t smbfs -o ip=192.168.0.1,username=valid_username,password=valid_password //hydra/open /mnt/samba

This should work.

Bye


Qatqat
 
or smbclient -L NameOfWindowsComputer

add -U user%password if in a domain and you need user authentication.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top