For those of you who do not have/use a GUI, this is how to manually share and map a samba share:
On the server:
apt-get install sambaNano the smb.conf in /etc/samba/smb.conf to include
[Share Name]Modify that to meet your needs then restart the samba service:
path = /home/share
available = yes
browseable = yes
public = yes
writable = yes
/etc/init.d/samba restart
On the client:
apt-get install smbfsIf the share is not public, then you might need to use the switch -o username=user.
mkdir /mnt/share
mount -t smbfs //serverIP/share /mnt/share