By using the following commands you can easily mount remote windows partition under Linux:-

1)Before starting please make sure that you have windows username and password to access share name.

2) Now login to Linux (become root user)

3) Create the required mount point:
# mkdir –p /mnt/ntserver

3) Use the mount command as follows:
# mount –t smbfs –o username=vivek,password=D1W4x9sw //ntserver/download /mnt/ntserver

4) Access it using:
# cd /mnt/ntserver; ls -l

Where
-t smbfs : File system type to be mount.

-o : are options passed to mount command, in this example I had passed two options. First one will give username to connect as and next supplies smb password.

//ntserver/download : Windows 2000/NT share name.

/mnt/ntserver Linux mount point (to access share after mounting)

Related posts:

  1. How to mount ISO image under Linux?
  2. Linux Password trick by using Linux second extended file system attributes
  3. Steps to Install AW-stats on your server
  4. What to Look in Windows VPS Hosting?