Re: Unable to restore Deluge backup on Synology
Posted: Sat May 13, 2017 6:26 pm
It does seem like this ended up being a permission issue. I looked at the permissions for the old original state folder on the first box and compared it to the permissions on the new box. To match the new ones to the old ones I did this:
To change all the directories to 755 (drwxr-xr-x):
To change all the files to 644 (-rw-r--r--):
Then I started Deluge back up and it finally detected all of the torrents.
Next, I'll look into replacing my client with one using Docker. Thanks for the help folks!
To change all the directories to 755 (drwxr-xr-x):
Code: Select all
find /volume1/@appstore/deluge/var/state -type d -exec chmod 755 {} \;
Code: Select all
find /volume1/@appstore/deluge/var/state -type f -exec chmod 644 {} \;
Next, I'll look into replacing my client with one using Docker. Thanks for the help folks!