this post was submitted on 24 Jun 2026
67 points (89.4% liked)

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

69554 readers
239 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

We heartily recommend visiting the free port of freemediaheckyeah (aka FMHY) while you sail the high seas, for all the freshest links the ocean has to offer.

📜 c/Piracy Wiki (Community Edition):

🏴‍☠️ Other communities

FUCK ADOBE!

Torrenting/P2P:

Gaming:


💰 Please help cover server costs.

Ko-Fi Liberapay
Ko-fi Liberapay

founded 3 years ago
MODERATORS
 

you are viewing a single comment's thread
view the rest of the comments
[–] lyralycan@sh.itjust.works 2 points 17 hours ago* (last edited 17 hours ago) (1 children)

Yes. Just to add, not everything hard links for me due to files being seeded (and locked) straight after it's done downloading, so later I go back and fix the bulk by entering the download folder and typing:

  • To list files that weren't hard linked:
find . -links 1 -type f | grep ".mp4$\|.mkv$" | sort > ../fixthese.txt

And going through the list and either reimporting manually via *arr>Wanted>Import manually, or

  • omitting certain shows from the command once you're certain all the unlinked are unwanted extras with:
find . -links 1 -type f | grep ".mp4$\|.mkv$" | grep -vE "./(Band.Of.Brothers|The Boys|Westworld|.*\] (Attack On Titan|JoJo)|.*ample.mkv$)" | sort > ../fixthese.txt

( "./(|.." covers most shows, "*] (|.." covers files starting with e.g. [Anime Time], and ".*ample.mkv$" covered my 'sample' and "Sample" videos)

[–] weilii@lemmy.lacasabien.space 1 points 17 hours ago (1 children)

Did you set the paths for your mounted folders in the docker appropriately? If you have the download folder and the media library mounted as distinct shares in the docker template it can break the links. I had to put the download and media library folders in the same mounted directory to make my links work.

I had /mnt/user/media/tv mounted to /tv And /mnt/user/media/downloads mounted to /downloads and had to change to so I just had /Mnt/user/media mounted to /media, with the download and media library folders both existing as subdirectories inside of /media to make them link properly. There is a faq on the sonarr reddit about this exact issue and it's a common failure point.

[–] lyralycan@sh.itjust.works 2 points 6 hours ago

Ah, thank you, but I run it as a service. Sonarr currently has /media/disk2/New for downloads and media/disk2/Shows for main shows.