SOLVED: write access from linux client
Posted: Sun Feb 14, 2016 10:10 pm
Using linux in Amahi inspired me to go a step further and try out linux for real. I installed Linux Mint on another computer. Right off the bat I was not able to see my HDA or any amahi shares on the linux box. I would have presumed they would show up under network devices, just like my synology NAS does, but they didn't. I don't know if not seeing them was how it is supposed to be or if something isn't right. If something's wrong, I presume it is on the linux client since amahi has virtually no network settings to change.
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.
This worked, but only to a degree. I can read the shares, but I cannot write to them. The shares are set to Writeable and Visible for all users in Amahi.
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.
Any ideas if this is an amahi issue, or something on the linux client?
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