$ sudo apt-get install cifs-utils
$ sudo mkdir /mnt/CIFSMOUNT
$ sudo chown -R <user>:<user> /mnt/CIFSMOUNT
$ sudo su
# cd /root
# vim .smbcredentials
Supply the username and password for CIFS storage as follows:
user=<cifsusername>
password=<password>
$ sudo vim /etc/fstab
Add the following content at the bottom of the file:
#
# CBS NAS CIFS Mount Point
#
//<CISFSTORAGEIP>/<cifspath> /mnt/CIFSMOUNT cifs credentials=/root/.smbcredentials,rw,nounix,iocharset=utf8,file_mode=0777,dir_mode=0777 0 0
Please replace <CISFSTORAGEIP> with actual IP and <cifspath> with actual path
$ sudo mount -a
$ df -h
tried a few step guides, this was clear and worked. Thank you