Write to windows share mounted in Ubuntu
Posted
by aidan
on Server Fault
See other posts from Server Fault
or by aidan
Published on 2010-06-15T15:29:32Z
Indexed on
2010/06/15
17:33 UTC
Read the original article
Hit count: 276
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
© Server Fault or respective owner