On Manjaro Linux FreeFileSync is unable to sync the contents of shared folders with special group permissions rws
On my Manjaro Linux system there are two users "bartolo" and "egidio" who are using a shared folder with special group permissions (-> setgid flag) for shared files. I want to sync the contents of this shared folder to an external hard drive and then take the external hard drive to a remote PC for data sync. While this works with linux commands, FreeFileSync fails.
Example for this issue:
Source folder is `media` on PC SSD named "Thales"**
[bartolo@Thales media]$ ls -l
drwxrwsr-x 7 bartolo users 4096 20. Jul 22:05 media
[bartolo@Thales media]$ pwd
/mnt/aethon/EDV/Computech_obv/Bildbearbeitung/media
drwxrwsr-x 2 egidio users 4096 5. Jun 15:41 Subfolder
├── [drwxrwsr-x bartolo users ] media
│ └── [drwxrwsr-x egidio users ] Subfolder
│ ├── [-rw-rw-r-- egidio users ] Farbtemperatur.jpg
│ ├── [-rw-rw-r-- egidio users ] Mikrofoto_sharpening.jpg
│ ├── [-rw-rw-r-- egidio users ] Dummy-1.txt
│ └── [-rw-rw-r-- egidio users ] Dummy-2.txt
[bartolo@Thales media]$ ls -l
drwxrwsr-x 5 bartolo users 4096 22. Jul 22:51 media
[bartolo@Thales media]$ pwd
/run/media/bartolo/Palmira/Backup/EDV-Crea_A/EDV/Computech_obv/Bildbearbeitung/media
FFS aborts with an error like this:
"Cannot write permissions ... not allowed [chown] -> see attachments
rsync can handle special group permissons
You can run the command as user without admin privileges:
rsync -aHAXS /mnt/aethon/EDV/ /run/media/bartolo/Palmira/Backup/EDV-Crea_A/EDV
drwxrwsr-x 7 bartolo users 4096 20. Jul 22:05 media
[bartolo@bartolo-pc Bildbearbeitung]$ tree -pug
├── [drwxrwsr-x bartolo users ] media
│ └── [drwxrwsr-x bartolo users ] Subfolder
│ ├── [-rw-rw-r-- bartolo users ] Farbtemperatur.jpg
│ ├── [-rw-rw-r-- bartolo users ] Mikrofoto_sharpening.jpg
│ ├── [-rw-rw-r-- bartolo users ] Dummy-1.txt
│ └── [-rw-rw-r-- bartolo users ] Dummy-2.txt