Step 1: Install the CIFS Utils pkg
sudo apt-get install cifs-utils
Code language: JavaScript (javascript)
Step 2: Create a mount point
sudo mkdir /mnt/local_share
Step 3: Mount the volume
sudo mount -t cifs -o user=<user on VPSA> //<ip_address>/<network_share> /mnt/<local_share>
Code language: HTML, XML (xml)
Mounting at boot
//<vpsa_ip_address>/<export_share> cifs user=<user on VPSA>,pass=<passwd on VPSA> 0 0
Code language: HTML, XML (xml)
Unmount the volume
sudo umount -l /mnt/<local_share>
Code language: HTML, XML (xml)