Anyway, this isn't really my question, just backstory. I did some googling, and I found out how to mount the HDA shares locally. I inserted the following in /etc/fstab for each share.
Code: Select all
//192.168.1.10/share1 /mnt/shares/share1 cifs username=user1,password=user1password 0 0
When it didn't work, I tried adding a read-write option based on examples I found online. The examples I found used the rw option in several different ways (below). Unfortunately none of them seem to work.
Code: Select all
//192.168.1.10/share1 /mnt/shares/share1 cifs rw username=user1,password=user1password 0 0
//192.168.1.10/share1 /mnt/shares/share1 cifs rw,username=user1,password=user1password 0 0
//192.168.1.10/share1 /mnt/shares/share1 cifs username=user1,password=user1password, rw 0 0