Hi CombFiltered,
We conducted a quick test in our lab and have reproduced the issue you described. I have requested our R&D team to implement a fix in the next release, either through a custom setting or as a permanent update for sharing. In the meantime, I have a workaround that will resolve the problem for you.
Please follow the next steps:
1. Log in to your appliance using the Text-based User Interface (TUI).
2. Navigate to the Troubleshoot menu and select Open Shell Terminal.
3. Execute the following commands:
3.1 Create a backup of your current configuration file:
Code: Select all
sudo cp /etc/samba/smb.conf ~/smb.conf.backup
3.2 Open the configuration file for editing:
3.3 Modify the share configuration: locate the share configuration section at the end of the file. For each SMB share, add the following line:
Save the changes:
3.4 Press Ctrl + X, then confirm by pressing Y and Enter.
3.5 Restart the SMB (Samba) service:
Code: Select all
sudo systemctl daemon-reload
sudo systemctl restart smbd
3.5 Update permissions for existing SMB shares:
sudo chmod 0755 -R <share path>
Run the following commands for each share you have. :
Code: Select all
chmod 0755 -R <path to an SMB share>
With regards to the provided screenshot, I assume the commands would be the following:
Code: Select all
sudo chmod 0755 -R /mnt/md1/data/Archives
sudo chmod 0755 -R /mnt/md1/data/Home
3.6 Exit the Terminal by pressing Ctrl + X and then Esc.
3.7 Log off the Text-based user interface.
This workaround should resolve the issue until the official fix is available.
Let me know if you encounter any problems or need further assistance!