To test if your Linux machine sees the shares on the Windows box:
smbclient -L -U
- Make a directoy for the mountpoint:
mkdir /mnt/
- Mount the share:
mount -t smbfs -o username=,password= /// /mnt/
Note: The syntax
-username=,password=
saves the password.- Create a symbolic link to the mounted drive:
ln -s /mnt/ /
No comments:
Post a Comment