I've got access to a cifs network drive When i mount it under my osx machine i can read and write

When I mount the drive in ubuntu, using.

sudo mount -t cifs -o username=${USER},password=${PASSWORD} //server-address/folder /mount/path/on/ubuntu

I am not able to write to the network drive, but I can read from it. I have checked the permissions and owner of the mount folder, they look like:

4.0K drwxr-xr-x  4 root root    0 Nov 12  2010 Mounted_folder

I can't change the owner because i get the error

chown: changing ownership of `/Volumes/Mounted_folder': Not a directory

When i descend deeper into the network drive and change the ownership i get the error that i have no permission to change the folder owner

How do you get write permission?

Best Answer


You are mounting the CIFS share as root (because you used sudo ), so you cannot write as normal user. If your Linux Distribution and its kernel are recent enough that you could mount the network share as a normal user (but under a folder that the user own), you will have the proper credentials to write file (e.g. mount the shared folder somewhere under your home directory, like for instance $HOME/netshare/ . You would need to create the folder before mounting it

An alternative is to specify the user and group id that the mounted network share should used, this would allow that particular user and potentially group to write to the share. Add the following options to your mount : uid=<user>,gid=<group> and replace <user> and <group> respectively by your own user and default group, which you can find automatically with the id command.

sudo mount -t cifs -o username=${USER},password=${PASSWORD},uid=$(id -u),gid=$(id -g) //server-address/folder /mount/path/on/ubuntu

If the server is sending ownership information, you may need to add the forceuid and forcegid options.

sudo mount -t cifs -o username=${USER},password=${PASSWORD},uid=$(id -u),gid=$(id -g),forceuid,forcegid, //server-address/folder /mount/path/on/ubuntu