Hi @xsyncguy
Not sure I can help you out much more - I have a few Macs, but not a Synology device.
You said in your original posting
I am getting a recurrent message on one of my machines
Is it one of your two Macs or the Synology device that gets the messages?
This will help pin point the device that has the file permission issues. It appears from the error that Syncthing can not correctly change the file permissions using the chmod
command.
This chmod
command sets the permissions on file(s) to manage and control who can read, write or execute them. The read, write and execute controls are set for the owner of the file, the group the file belongs to, and an everyone setting also.
If you look at files in a Terminal window on your Mac computers and Synology (if it has Terminal or ssh access?) then you can check these permission and maybe see what is causing the error.
For example using the command on a Mac in Terminal: ls -l
shows:
MystixMac:Documents deb$ ls -l
total 36976
-rw-rw-r-- 1 deb staff 22528 28 Dec 2004 Ceri 0203.doc
-rwxrwxr-x 1 deb staff 27136 15 Jun 2006 LGDU-Pres.doc
-rwxrwxr-x 1 deb staff 20480 28 Dec 2004 Lauren 03.09.doc
-rwxrwxr-x 1 deb staff 20480 28 Apr 2005 Lauren 29.04.doc
...
The file permissions are shown first (ie rw-
for owner, rw-
group, r--
everyone. Ignore the very first -
for now). So in the outputs above for the file `Ceri 0203.doc’ has:
-
= ignore this first one
rw-
= read/write/(no execute) for the owner (ie deb is the owner)
rw-
= read/write/(no execute) for the group (ie staff is the group)
r--
= read/(no write)/(no execute) for everyone (ie any other accounts on the computer)
The deb
and staff
are the owner and group the files belong too, respectively.
The last file shown in the ls -l
output above is Lauren 29.04.doc
with the permissions of:
-
= ignore this first one
rwx
= read/write/execute for the owner (ie deb is the owner)
rwx
= read/write/execute for the group (ie staff is the group)
r-x
= read/(no write)/execute for everyone (ie any other accounts on the computer)
Again, the deb
and staff
are the owner and group the files belong too, respectively.
While chmod
changes the permission, chown
can alter the owner and group. You can probably fix the puller issues you are seeing - but you first need to pin pointing which computer has the permission issue, and of course why they got that way also.
To make all the files in a folder owned by deb
and to be in the group staff
you would use the command: chown deb:staff *
on a Mac computer. Be careful though - or you could change the ownership incorrectly, and stop yourself from being able to access the files !!
Just create a few test files in a folder and play with those first! You can create empty files to play with in a Terminal with the command: touch my-test-file.txt
and touch my-test-file2.txt
To be able to change a files permissions - the person (or in this case the program - Syncthing) needs to have the right privileges to do so. So hence why we the output of the command: ps auxww
was asked for - as that shows the person or user that Syncthing is running as on your different computers.
To change file permissions yourself, you use the command chmod
, and specify what permissions the file should have. The permissions can be set by working out what you need, for owner, group, and everyone - you choose one of the following numbers based on the permission(s) to be granted:
r w x : permissions
4 2 1 : corresponding permission values
r w x : 7
r w - : 6
r - x : 5
r - - : 4
- w x : 3
- w - : 2
- - x : 1
So: `chmod 755 “Lauren 29.04.doc”`` changes the file to the following:
MystixMac:Documents deb$ ls -l "Lauren 29.04.doc"
-rwxr-xr-x 1 deb staff 20480 28 Apr 2005 Lauren 29.04.doc
and `chmod 664 “Lauren 29.04.doc”`` changes the file to
MystixMac:Documents deb$ ls -l "Lauren 29.04.doc"
-rw-rw-r-- 1 deb staff 20480 28 Apr 2005 Lauren 29.04.doc
Your errors are probably caused by the the files being owned by one user, and the permissions being set, so a different user cant change them. When Syncthing runs on a computer - it usually inherits the permissions of the user who started it. It then basically has the permissions on the files in the same way that user does. This is probably what is causing your problems - when the files are synced (copied) between the different computers.
There is more info on the internet about file permission - but hopefully the above helps you trouble shoot a bit further.
Also found this in a Google search - which may be of use: Synology Knowledge Center
In your Mac Terminal you can also enter the commands: man chmod
and man chown
that will display the manual pages for each of those commands - and explain them in even more detials, and tell you all about the command line switches. Nearly all command have this information, also have a look at: man ls
and of course man man

When reading man pages - press q
exit a page, space bar
to go forward a page, and b
to go back a page.
Cheers
Simon