Smb shares - No write permissons?

Hi all,

On Kubuntu 18.04 I’m trying to mount a share with following command

sudo mount -t cifs -o username=testuser,password=secret //<Server-IP>/share /media/mnt

it works without problems but it is not possible to write onto the mounted share.

When I connect to the share via the filemanager “Dolphin” then I dont have this issue.

Any ideas?

Regards Pete

Check the permission of the mounted dir: /media/mnt

That’s what I suspected but it took a while to find out what the problem was.
To make a long story short, I found out that the permissions are set to root:root with the above mentioned mount command, regardless what they set before. I had success with following command:
sudo mount -t cifs -o uid=mylocaluser,gid=mylocalgroup,username=testuser,password=secret //<myserver-IP>/share / /media/mnt

But there’s still an issue left. When I copy a file with drag & drop using the file manager Dolphin to the share and abort the process before it is finished, then the file is shown in the share but cannot be deleted or overridden?
I think it is problem of the OS, but maybe someone has an idea what’s going on there?

Pete