Mount network drives in ClearOS

Create a SSH connection to your ClearOS server with putty or via terminal

1. Create a folder to mount share on

mkdir /mnt/folder

2. Open FSTAB

nano /etc/fstab

3. Add share definition/s to FSTAB, add the following line to the end. Once happy save (CTRL-O)

\\compname\sharenam     /mnt/folder  cifs auto,rw,username=usernamel,password=password 0 0

4.Mount Shares

mount -a

And your done….