Transmission

Hi, I can't mount my hdd for transmission...
No description
No description
No description
32 Replies
Stavros
Stavros4w ago
Can you please try to run sudo chown -R 1000:1000 /mnt/Sata0/Téléchargement then remove the torrent and try to download it again
urbamax
urbamaxOP4w ago
Same...
Nicolas
Nicolas4w ago
docker exec -it transmission id
urbamax
urbamaxOP4w ago
maximeurbaniak@raspberrypi5:~ $ docker exec -it transmission id uid=0(root) gid=0(root) groups=0(root),1(bin),2(daemon),3(sys),4(adm),6(disk),10(wheel),11(floppy),20(dialout),26(tape),27(video) maximeurbaniak@raspberrypi5:~ $ And, another thing : I have radarr (without tipi) and radarr cannot see the dl within /downloads/complete ....
Stavros
Stavros4w ago
Won't work, transmission uses the s6 overlay if I remember correctly meaning that it runs as the user defined in PGID and PUID set through environment variables which in tipi's case is 1000 and 1000 I suspect the disk mount is configured incorrectly, @urbamax how did you mount the drive
urbamax
urbamaxOP4w ago
with fstab I think, it's been a while
Stavros
Stavros4w ago
How did you format it? Exfat? Ext4? I think I have a quick fix for you Create the file runtipi/user-config/transmission/docker-compose.yml
urbamax
urbamaxOP4w ago
He is look at the capture
Stavros
Stavros4w ago
And add
services:
transmission:
environment:
- PGID=0
- PUID=0
services:
transmission:
environment:
- PGID=0
- PUID=0
It will force transmission to run as root Not the best but it should fix all permission issues
urbamax
urbamaxOP4w ago
And that's the information about the hdd, it's in my "freebox delta" (internet box)
No description
urbamax
urbamaxOP4w ago
I erase older services in that file ?
Stavros
Stavros4w ago
Ok it's Ext4 so it's weird that the above solutions didn't work Nope just add the environment So you can keep your current config too
urbamax
urbamaxOP4w ago
Ok, I don't change anything so
Stavros
Stavros4w ago
Add the environment below the volumes part so
services:
transmission:
volumes:
- your volume
environment:
- the environment variables
services:
transmission:
volumes:
- your volume
environment:
- the environment variables
urbamax
urbamaxOP4w ago
Don't know what you mean by - the environment variables Sorry, I'm a newbie who learn step by step by doing mistakes... Can you fix that ? Or just let me see that files because I didn't see any movie in the download folder.. maximeurbaniak@raspberrypi5:~ $ ls -al ~/runtipi/media total 24 drwxrwxrwx 6 root root 4096 Feb 1 2024 . drwxr-xr-x 14 maximeurbaniak maximeurbaniak 4096 Jan 3 13:32 .. drwxrwxrwx 10 root root 4096 Feb 1 2024 data drwxrwxrwx 5 root root 4096 Feb 1 2024 downloads drwxrwxrwx 5 root root 4096 Feb 1 2024 torrents drwxrwxrwx 5 root root 4096 Feb 1 2024 usenet Maybe it can help you...
Stavros
Stavros4w ago
You should add
services:
transmission:
volumes:
- what you already have there
environment:
- PGID=0
- PUID=0
services:
transmission:
volumes:
- what you already have there
environment:
- PGID=0
- PUID=0
Let's focus on transmission for now
urbamax
urbamaxOP4w ago
I have to restart transmission ?
Stavros
Stavros4w ago
Yeah
urbamax
urbamaxOP4w ago
ok, I see part files in my folder For now it's working on incomplete files, I'm waiting for complete files 🤣
Stavros
Stavros4w ago
Cool
urbamax
urbamaxOP4w ago
OK, it's working !! Thank you !!!
Stavros
Stavros4w ago
Cooooool
urbamax
urbamaxOP4w ago
Something else : at each startup of the pi, I have to sudo mount -a to mount again my hdd's Do you know what's wrong ?
Stavros
Stavros4w ago
Huh can you share your /etc/fstab file?
urbamax
urbamaxOP4w ago
In a second I'm restarting tipi
urbamax
urbamaxOP4w ago
No description
Stavros
Stavros4w ago
Since you are using a pi
urbamax
urbamaxOP4w ago
Maybe 6-7 years now
Stavros
Stavros4w ago
The issue may be that fstab mounts before network is available
urbamax
urbamaxOP4w ago
maybe more
Stavros
Stavros4w ago
So try to do sudo raspi-config Go to system options And enable network at boot Then reboot your pi (raspi config may ask you to reboot too) and it should automount the shares
urbamax
urbamaxOP4w ago
just see wireless lan in system options But I'm connected over RJ45 Oh.. at reboot, transmission auto change his configuration and back to the usual folder.... I found the option for mounting, thank you And found an alternative for folder. I define the directory directly in the client of radarr/sonarr

Did you find this page helpful?