Problem description
End user has copied over certain files from a different device to his local Linux machine which is being backed up by Druva inSync Client. These files are failing the backup with the following error:
π Note
β[WARNING] ('Estimate', 140173349922560) Unable to access /home/users, skipping. Error: [Errno 13] Permission denied: '/home/users'.
Cause
The permissions to the inSync user are missing on these files.
Resolution
Ensure that the end user for whom the inSync Client is activated on the device, has at least READ rights on such files that are failing to be backed up with the permission errors.
For example,
ls -l <file or directory> It shows the permission settings on file or directory
chmod 755 <file or directory> β--- This grants Read,Write and Execute permissions.
chmod 755 -R <file or directory> This is same as above in recursive mode.
chmod a=r foldername β This will grant read only permission to all users.