View Single Post

  #2 (permalink)  
Old 09-03-2007, 08:16 PM
monk's Avatar
monk monk is offline
Senior Member
User
 
Join Date: Jan 2005
Location: Tibet
My distro: Debian GNU/Linux
Posts: 482
Rep Power: 5
monk will become famous soon enough monk will become famous soon enough
Default

You need to use smbclient command to access another windows/samba share:

Code:
smbclient //ip-address//e$ -U ntusername
Read 2nd section How do I browser a samba / windows share from a command prompt : Browse a Samba or MS Windows share in Nautilus

Another option is mount remote windows / samba system using mount command:
Code:
mkdir -p /mnt/test
mount -t cifs //server-ip/share username=monk,password=secreat /mnt/test
cd /mnt/test
ls
To access another UNIX / Linux box or to copy file use scp and ssh command. Hit reply button if you need any other help!
__________________
May the force with you!
Reply With Quote