When I mount an SMB share, my permissions are always broken:
% ls -l
-rwx------ 1 derek staff 3347 Jul 29 2012 Magazines*
-rwx------ 1 derek staff 3347 Jul 29 2012 Magazines.txt*
drwx------ 1 derek staff 16384 Mar 24 2018 Mathematics/
On the source, I have
% ls -l
-rw-r--r-- 1 derek staff 3347 Jul 29 2012 Magazines
-rw-r--r-- 1 derek staff 3347 Jul 29 2012 Magazines.txt
drwxr-xr-x 1 derek staff 16384 Mar 24 2018 Mathematics/
I have found, through tedious trial and error, that if I mount SMB shares like so
mount -t smbfs -o -d=755,-f=644 smb://...
then, in Terminal, my files have ordinary permissions, not the weird ones:
% ls -l
-rw-r--r-- 1 derek staff 3347 Jul 29 2012 Magazines
-rw-r--r-- 1 derek staff 3347 Jul 29 2012 Magazines.txt
drwxr-xr-x 1 derek staff 16384 Mar 24 2018 Mathematics/
So — is it possible to specify options for SMB shares in ConnectMeNow? I couldn't figure out how to do it.
(And if anyone understands SMB shares and file permissions and knows a better way to do this, I would love to hear about it.)