All Collections
Knowledge Base
Endpoint and SaaS Apps
Troubleshooting - Endpoint and SaaS Apps
Some files under the home directory on Linux devices are failing to be backed up
Some files under the home directory on Linux devices are failing to be backed up
Updated over a week ago

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,

  1. ls -l <file or directory> It shows the permission settings on file or directory

  2. chmod 755 <file or directory> β€”--- This grants Read,Write and Execute permissions.

  3. chmod 755 -R <file or directory> This is same as above in recursive mode.

  4. chmod a=r foldername β€” This will grant read only permission to all users.

Did this answer your question?