Hi all,
I have a windows share on my local network which I've mounted using:
Code:
mount -t smbfs -o username=guest,password= "//Valjean/Shared Files" /mnt/valjean
in my /etc/rc.local file.
The reason I've not used /etc/fstab is that fstab can't handle the space in the remote location
Anyway, the problem is as a normal user I only have read access to the shares. As root I can read/write but would like this capability for the user group as well.
How do I achieve this?
Many thanks in advance.