this post was submitted on 14 Mar 2024
50 points (93.1% liked)

Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ

53948 readers
399 users here now

⚓ Dedicated to the discussion of digital piracy, including ethical problems and legal advancements.

Rules • Full Version

1. Posts must be related to the discussion of digital piracy

2. Don't request invites, trade, sell, or self-promote

3. Don't request or link to specific pirated titles, including DMs

4. Don't submit low-quality posts, be entitled, or harass others



Loot, Pillage, & Plunder


💰 Please help cover server costs.

Ko-FiLiberapay


founded 1 year ago
MODERATORS
 

I always wondered why hardlinks in radarr/ sonarr and qbittorrent didn't work for me. I think the problem was that I mapped the directories as below:

    volumes:
      - ./config:/config
      - ./downloads:/downloads
      - ./movies:/movies

whereas I should've mapped them as:

    volumes:
      - ./config:/config
      - ./media:/media 
      - ./media/downloads:/media/downloads
      - ./media/movies:/media/movies

Now, how do I replace all the duplicate files in /downloads with the links?

you are viewing a single comment's thread
view the rest of the comments
[–] rambos@lemm.ee 4 points 6 months ago (1 children)

Hard links are default. Files look like duplicates but they dont take double amount of storage. To empty storage you have to delete both files.

As someone elese already said, you should use single volume for both radarr and qbittorrent.

This is from wiki.servarr:

data
├── torrents
│  ├── movies
│  ├── music
|  ├── books
│  └── tv
├── usenet
│  ├── movies
│  ├── music
│  ├── books
│  └── tv
└── media
    ├── movies
    ├── music
    ├── books
    └── tv

Following this you should have

volumes:
  - /path_to_qbit_config:/config
  - /path_to_data:/data
volumes:
  - /path_to_radarr_config:/config
  - /path_to_data:/data
[–] lessthanthree@lemmy.dbzer0.com 1 points 6 months ago (1 children)

What's the best way to easily delete both files? I first assumed that deleting listings from Radarr cleaned up both files.

[–] rambos@lemm.ee 2 points 6 months ago* (last edited 6 months ago) (1 children)

I couldnt find best way tbh. You could set your qbittorrent to auto delete after some time or when hit specific ratio, then manually delete from arrs. There is also app that auto deletes library after X days (, but didnt try it myself.

None of that suits my needs, so I just do it manually from both qbit and library

Edit: best way is to get more storage so you do it less frequently or you never do it 🙃

[–] lessthanthree@lemmy.dbzer0.com 1 points 6 months ago

I setup the auto-delete function. I placed a very high ratio and a certain amount of days to stay active. I'd prefer to seed indefinitely but this will do for now.

I'm definitely getting more storage soon.