Unable to restore Deluge backup on Synology

General support for problems installing or using Deluge
dima
New User
New User
Posts: 7
Joined: Thu May 11, 2017 6:21 pm

Re: Unable to restore Deluge backup on Synology

Post by dima »

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):

Code: Select all

find /volume1/@appstore/deluge/var/state -type d -exec chmod 755 {} \;
To change all the files to 644 (-rw-r--r--):

Code: Select all

find /volume1/@appstore/deluge/var/state -type f -exec chmod 644 {} \;
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!
Post Reply