From 93634a7dd71692346d1f431da64d9bac3068efe7 Mon Sep 17 00:00:00 2001 From: "A. Schueler" Date: Wed, 10 Jun 2026 00:07:54 +0200 Subject: [PATCH 1/2] docs: update truenas section to include chown Added step to explain necessary ownership change of the Seerr folder after starting Seerr for the first time when migrating TrueNAS. --- docs/migration-guide.mdx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/migration-guide.mdx b/docs/migration-guide.mdx index 8e9182f4b0..0841ea2319 100644 --- a/docs/migration-guide.mdx +++ b/docs/migration-guide.mdx @@ -269,9 +269,13 @@ For detailed community-maintained TrueNAS SCALE walkthroughs, see the [Host Path ```bash rsync -av /mnt/.ix-apps/app_mounts/jellyseerr/ /mnt/storage/seerr/ ``` - 4. Install Seerr and use the same Host Path storage that was created before (`/mnt/storage/seerr/config` in our example) - 5. Start Seerr app - 6. Delete Jellyseerr/Overseerr app + 4. Change ownership of the folder from `root` to the `apps` user and group: + ```bash + chown -R 568:568 /mnt/storage/seerr/ + ``` + 5. Install Seerr and use the same Host Path storage that was created before (`/mnt/storage/seerr/config` in our example) + 6. Start Seerr app + 7. Delete Jellyseerr/Overseerr app From cc27f60366decc3c55e722ad7b4d38dff06a4af0 Mon Sep 17 00:00:00 2001 From: "A. Schueler" Date: Thu, 25 Jun 2026 00:27:31 +0200 Subject: [PATCH 2/2] fix: use chown rsync argument to simplify ixVolume migration --- docs/migration-guide.mdx | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/docs/migration-guide.mdx b/docs/migration-guide.mdx index 0841ea2319..3486f38703 100644 --- a/docs/migration-guide.mdx +++ b/docs/migration-guide.mdx @@ -267,15 +267,11 @@ For detailed community-maintained TrueNAS SCALE walkthroughs, see the [Host Path 3. Copy ixVolume Data Open System Settings → Shell, or SSH into your TrueNAS server as root and run : ```bash - rsync -av /mnt/.ix-apps/app_mounts/jellyseerr/ /mnt/storage/seerr/ + rsync -av --chown=568:568 /mnt/.ix-apps/app_mounts/jellyseerr/ /mnt/storage/seerr/ ``` - 4. Change ownership of the folder from `root` to the `apps` user and group: - ```bash - chown -R 568:568 /mnt/storage/seerr/ - ``` - 5. Install Seerr and use the same Host Path storage that was created before (`/mnt/storage/seerr/config` in our example) - 6. Start Seerr app - 7. Delete Jellyseerr/Overseerr app + 4. Install Seerr and use the same Host Path storage that was created before (`/mnt/storage/seerr/config` in our example) + 5. Start Seerr app + 6. Delete Jellyseerr/Overseerr app