Required Packages
sudo apt-get update
sudo apt-get install cifs-utils
File Directories
sudo mkdir /mnt/storage
sudo chmod -R 777 /mnt/storage
sudo touch /root/.smbcredentials
sudo nano /root/.smbcredentials
The following will be your Windows SMB Credentials and Domain. If you do not have a Domain associated, you will remove that part.
username=
password=
domain=
sudo chmod 700 /root/.smbcredentials
sudo nano /etc/fstab
Add the following line towards the bottom.
//HostIP/storage /mnt/storage cifs credentials=/root/.smbcredentials,uid=33,gid=33,rw,nounix,iocharset=utf8,file_mode=0777,dir_mode=0777 0 0
mount -a
ex: //HostIP/storage /mnt/storage cifs credentials=/root/.smbcredentials,uid=33,gid=33,rw,nounix,iocharset=utf8,file_mode=0777,dir_mode=0777,vers=3.0 0 0