by
All files accessible in a Linux (and UNIX) system are arranged in one big tree, the file hierarchy, rooted at /. These files can be spread out over several devices. The mount command serves to attach the file system found on some device to the big file tree.
Use the mount command to mount remote windows partition or windows share under Linux as follows: 1) Make sure you have following information: 2) Login to Linux as a root user (or use su command) 3) Create the required mount point: Use following command if you are using Old version such as RHEL <=4 or Debian <= 3: 5) Access Windows 2003/2000/NT share using cd and ls command:Procedure to mount remote windows partition (NAS share)
==> Windows username and password to access share name
==> Sharename (such as //server/share) or IP address
==> root level access on Linux
# mkdir -p /mnt/ntserver
4) Use the mount command as follows:
# mount -t cifs //ntserver/download -o username=vivek,password=myPassword /mnt/ntserver
# mount -t smbfs -o username=vivek,password=D1W4x9sw //ntserver/download /mnt/ntserver
# cd /mnt/ntserver; ls -l
Where,
| phpMyAdmin: Cannot load mysql extension. Please check your PHP configuration< Prev | Next >How to Connect to a Samba share from OS X |
|---|


