Comment on Incorrect permissions on my .arr stack
just_another_person@lemmy.world 3 months ago
Just make sure you’re actually authenticating to the network share and not browsing an open/anonymous share. The user perms on the host of the volume need to match for read/write, or need to be publicly writable.
MrQuallzin@lemmy.world 3 months ago
Yup, the mount is authenticated and the Share Permissions on Windows have it set to Full Control for Everyone, plus ‘Password protected sharing’ is turned off under Advanced Network Settings.
just_another_person@lemmy.world 3 months ago
Okay, so on the server which is connecting to the share, from a cli, can you create files on the share mount? Don’t use your GUI if using. Go to a prompt, and touch or copy a file in the mount location.
MrQuallzin@lemmy.world 3 months ago
No GUI on my end (It’s been fun learning to use a headless server). I have to sudo to be able to do anything in the mount locations. Using ls -s, the permissions and owner aren’t changing after using chown and chmod.
just_another_person@lemmy.world 3 months ago
Okay, so you need to match the uid/gid of your user on the client machine with whatever is on the host volume machine. You probably want a dedicated user.
On Windows machine: create new user, make sure ownership is set in permissions, log in with that user on the client machine. Then you won’t need sudo. You can Google to find more explanation, but that’s the gist.