yewed

Members
  • Posts

    1
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

yewed's Achievements

Noob

Noob (1/14)

0

Reputation

  1. Hey, I set up my system with binhex/radarr and binhex/qbittorrent and everything is working fine, except that I think it's not hard linking the movies but copying. I'm suspecting that because the inode is different. I double checked all the paths and read about the common issue with hard linking not working if they are on different volumes. But in my case they have the same path. The "completed" directory of qbittorrent. The inode of the file is 86915752 here. ubuntu@host:~/services/qbittorrent-movie/qbittorrent-data/completed/A Movie 1988 720p BluRay DD5.1 x264$ ls -lahi total 9.7G 86917158 drwxr-xr-x 2 ubuntu ubuntu 4.0K Oct 17 21:26 . 86914936 drwxrwxr-x 28 ubuntu ubuntu 4.0K Oct 17 21:26 .. 86915752 -rw-r--r-- 1 ubuntu ubuntu 9.7G Oct 17 21:26 A.Movie.1988.720p.BluRay.DD5.1.x264.mkv The media directory of Radarr (which is then also the directory that Plex watches, but that's not important in this case). In here the inode is listed as 87568780. Different than the one in the complete directory. Assumption: It's a copy! ubuntu@host:~/services/radarr/media/A Movie (1988)$ ls -lahi total 9.7G 87572498 drwxr-xr-x 2 ubuntu ubuntu 4.0K Oct 17 21:29 . 87557920 drwxrwxr-x 21 ubuntu ubuntu 4.0K Oct 17 21:27 .. 87568780 -rw-r--r-- 1 ubuntu ubuntu 9.7G Oct 17 21:26 'A Movie (1988) Bluray-720p.mkv' My paths in Docker Compose look like this: QBittorrent: - /home/ubuntu/services/qbittorrent-movie/qbittorrent-data:/data Radarr: - /home/ubuntu/services/qbittorrent-movie/qbittorrent-data:/data - /home/ubuntu/services/radarr/media:/media In Radarr the path in the Movie Editor looks like this, which should be correct and also the movies end up in there, just not hard linked. In QBittorrent the paths are set to the container path based on the mounted /data directory. Based on everything I read in the FAQ this should all be correct, after changing around things a lot to get it running in the first place. Would be very grateful for any pointers! 🙏 Thank you!