You can use the command :
Quote:
mount -t smbfs -o username=<PC-username>,password=<PC-username-passwd> //<PC-IP>/<PC-SHARE-NAME> /mnt/windows
|
(there is no space b/w "PC-username" & "," & "password=" )
Prior to run this command you need to create a new dir with name "windows" in /mnt
(You may use any other existing directory in /mnt)
It will work.
I expect you are using your linux box with root privilleges. Otherwise run "su" prior to this command if you get any error.
Now after mounting your PC-Windows XP, you'll be preferring to make a symlink & point /mnt/windows to point to a new location anywhere on your linux box assuming that location does not exist.
Run command
Quote:
ln -s /mnt/windows /windows-symlink
|
Through that command i created a symlink of directory
/mnt/windows --> /windows-symlink directory.
Now you can crosscheck by
(read MAN page of ln for more info)
FEEDBACK for any other query.