
How to mount a Windows share with smbmount.
May 1, 2009Ok so onto the Linux system, its relatively simple:
Make the directory you want to mount the share to.
mkdir /mnt/share
Next either…
Mount the share with user/pass:
smbmount //winpc/shared /mnt/share -o username=user,password=pass,rw
Or mount the share without a user/pass (this is true if Everyone is still set)
smbmount //winpc/shared /mnt/share -o rw
Source :http://www.linux-noob.com/forums/index.php?showtopic=1404