brent 5 Posted January 10, 2019 To mount a windows share on Ubuntu Server: 1. Share the folder on your windows box 2. Create a mount point in /mnt: sudo mkdir /mnt/windows-share 3. Install CIFS-UTILS sudo apt-get install cifs-utils 4. Create a credential file for the windows share. **(You can name the credential file anything you want)** sudo nano /etc/cifs-credentials 5. username=brent password=Sp23rty5% domain=kc-linux.com 6. On your Ubuntu server open the file: sudo nano /etc/fstab edit the file with your information //WIN_SHARE_IP/share_name /mnt/win_share cifs credentials=/etc/win-credentials,file_mode=0755,dir_mode=0755 0 0 7. Run to mount the share: sudo mount -a Share this post Link to post Share on other sites