I am trying to access a win7 machine that has sharing enabled on a folder. When I mount it on linux it lists all files as -rwxr-xr-x 1 root root
If i sudo i can copy files back and forth but its read only if I dont.
sudo chown [standard_user] * on the mounted share does nothing.
This mounts the share as read only (all files are root) sudo mount -t cifs "//myipaddress/myshare" /home/myuser/mymount/ -o username=myusername,password=mypassword,rw
On the win7 box I have myuser and everyone as 'full control'
how do I mount this share so that I dont have to be root to delete/move files?
-rwxrwxrwx
. Is there a way to change this? – Rogier Lommers Sep 10 '18 at 18:34myusername
andusers
, but instead with1000
and1000
– Mark Jeronimus Aug 15 '23 at 14:02