[Linux] Ubuntu mount to folder shared on Windows
Step 1. Install smbfs
sudo apt-get install smbfsStep 2. Create script file with content:
sudo mount -t smbfs -o username=user //192.168.2.12/qgs/Ins" "QGS/Documents/BA" "Team/Prototypes /var/www/mockIf you want auto mount smbfs after server restart
sudo nano /etc/fstabAdd line:
//192.168.2.12/qgs/Ins\040QGS/Documents/BA\040Team/Prototypes /var/www/mock cifs username=user,password=pass 0 0Notes: \040 is space in patch for smbfs mount.