Author: Sven Knispel
Updated: 2004-11-01
This article describes how to set up a share from a Linux box to a Windows box.
Samba has to be installed.
To test if your Linux machine sees the shares on the Windows box:
smbclient -L <windows-box> -U <username>
mkdir /mnt/<name-of-mount-point>
mount -t smbfs -o username=<username>,password=<password> //<win-box>/<share> /mnt/<name-of-mountpoint>
Note: The syntax -username=<username>,password=<password>
saves the password.
ln -s /mnt/<name-of-mount-point> /<path-of-symlink>