Write to windows share
- by aidan
I used to mount a windows share in Ubuntu server, with an entry in fstab:
//data/SharedFolder /media/SharedFolder/ smbfs user,defaults,credentials=/root/.creds,uid=root,gid=root 0 0
/root/.creds is a text file with three lines, my username, password and domain.
Users on the ubuntu server could write to this mount, but then I upgraded to 10.04 and now only root can write. Regular users can still read though.
mount currently tells me:
//data/SharedFolder on /media/SharedFolder type cifs (rw,mand,noexec,nosuid,nodev)
How do I make it world writeable again?
Thanks