Refer #1: http://www.howtogeek.com/116309/use-ubuntus-public-folder-to-easily-share-files-between-computers/
Refer #2: https://help.ubuntu.com/community/Samba/SambaServerGuide
To start you need to right-click the folder to share and then install the software
Afterwards you'll need to change the settings to share the files:
sudo nano -w /etc/samba/smb.conf
# By default, the home directories are exported read-only. Change the
# next parameter to 'no' if you want to be able to write to them.
read only = no
# File creation mask is set to 0700 for security reasons. If you want to
# create files with group=rw permissions, set next parameter to 0775.
create mask = 0775
# Directory creation mask is set to 0700 for security reasons. If you want to
# create dirs. with group=rw permissions, set next parameter to 0775.
directory mask = 0775
