piracy

Magazyn ze zdalnego serwera może być niekompletny. Zobacz więcej na oryginalnej instancji.

nerdschleife, (edited ) w I am looking into setting up a home mediaserver. Any good guides?

Would suggest jellyfin over Plex due to the latter’s increasing corporate greed.

  • Radar - for movies
  • Sonarr - for series
  • Prowlarr - for indexing

Optional:

  • Jellyseer - a nice frontend for the above
  • Bazarr - subtitles

This is a super simplified list, but the wikis are easy enough to get started with.

Edit: cjf has listed some useful links for the same

Appoxo,
@Appoxo@lemmy.dbzer0.com avatar

Mobile alternative (Android) frontend: NZB360

randompepsi, w Can they even track pirated installs ?

No, they can not. This is just a standard PR response.

lukas, (edited )
@lukas@lemmy.haigner.me avatar

When crackers don’t patch out the phone line, they can.

Edit: Only in some cases, though. They can detect popular ways to crack games, like Steam DRM stubs. If the game has zero identifiable information about the buyer and no or an unsupported DRM, they’re SOL.

ce_,

and how exactly is unity going to know whether it was gotten legitimately or not? the only way the developers wouldn’t get charged is if crackers patched it out

lukas,
@lukas@lemmy.haigner.me avatar

They can’t detect everything, but let’s look at Steam as an example. If the game detects Steam DRM, then the game knows that they should’ve bought the game on Steam. They can check whether the Steam DRM is a stub and therefore a crack, or get your local Steam account ID and cross-check whether you bought the game with a Steam API.

lukas,
@lukas@lemmy.haigner.me avatar

But you’re also correct that the developers don’t get charged when crackers patch out the phone line.

genoxidedev1,

Idc about anything right now I'm hungry af and the only thing I was able to read was crackers fml

laylawashere44,

The thing is that most Unity games don’t even have DRM in the first place. At most most will have the Steam DRM which is trivial to bypass. And Unity Games released on GOG will be especially at risk.

nevernevermore, w With PLEX blocking Hetzner Hosting, I'm thinking of Moving to Jellyfin, but I have some questions.

not really a striesand effect but I'd never heard of hetzner until plex blocked them and now im heavily considering moving my library over

Vaggumon,
@Vaggumon@lemm.ee avatar

Check out the auctions, they tend to have some pretty great deals.

Appoxo,
@Appoxo@lemmy.dbzer0.com avatar

It’s not like Hetzner is a small player in the European datacenter VPS market. :p

phoenixz, w I am looking into setting up a home mediaserver. Any good guides?

Don’t use Plex they regularly screw over their users.

Go for open source, go for jellyfin, it’s awesome

kniescherz, w I am looking into setting up a home mediaserver. Any good guides?
kniescherz, w I am looking into setting up a home mediaserver. Any good guides?

I would look into the zima board or zima blade, cheap but should be powerful enough. Otherwise there are really great server builds possible with low powered mini PCs possible. See Wolfgangs channel on youtube for inspiration.

You could use a raspi but there are more powerful options for a similar price.

ultratiem, w Why WARP is OK for torrenting
@ultratiem@lemmy.ca avatar

WARP is a great. The only issue when it comes to torrenting is you can’t drill open any ports. Makes seeding super hard near impossible.

Other than that, yeah it will protect all traffic and is insanely fast for a free service (I snapped 700Mbps and my line is 1Gbps).

whitecapstromgard, w What are the best alternatives to The Pirate Bay in 2023?

I just search for “name of movie + download” in a non-Google search engine. Google does censorship right, but the others are usually good.

FeelzGoodMan420, (edited )

Doesn’t duckduckgo also censor it since it uses Bing as the primary search algorithm?

whitecapstromgard,

not as bad as google does

PoisonedPrisonPanda,

yandex is very good in this. often being able to read cyrillix helps.

yote_zip, w I am looking into setting up a home mediaserver. Any good guides?
@yote_zip@pawb.social avatar

Hi I accidentally wrote a wall of text:

perfectmediaserver.com can give you some inspiration on system architecture/layout. There’s a lot of right answers here depending on your situation, so you’ll likely want to research the various options and trade-offs.

Some common base architecture layouts that I know of:

Any Linux + no parity: Just throw Debian on a box, put Docker on it, and away we go. No data integrity, and data loss will be permanent, but it’s an option if you set up backups for your important data and assume the rest is expendable. If you want to start setting up parity on raw Linux you’ll probably want to move down to a more dedicated architecture below for less headaches.

OpenMediaVault + SnapRAID + MergerFS + backed by BTRFS disks: my personal choice for ad-hoc/budget setups. Great for having really flexible storage that lets you make use of all HDD space that you have laying around without fuss. You’ll need to sacrifice your largest drive to hold RAID parity and the storage architecture is not especially performant but that’s not a big deal for a media server. OpenMediaVault can run Docker for you on the host without needing to run it in a VM (and you should be using Docker for your software stack).

Unraid: Similar in storage architecture to the OpenMediaVault combo, but it’s not free. I don’t have personal experience with this one but a lot of people like it. IMO this option would only make sense if you want a turn-key system and don’t want to think about anything on the software side. It has turn-key “apps” that are just Docker behind the scenes (to my knowledge).

TrueNAS Scale: This will be running ZFS for storage, but ZFS has a lot of problems with storage flexibility. You need to really know what you’re doing when designing your storage layout, and you probably won’t get full usage out of the HDDs you have laying around. In exchange, ZFS is bulletproof for data integrity and makes full use of your drives’ combined speed. You’ll likely be giving up 50% of your total HDD capacity to run ZFS - either explicitly by running mirrored drives or by running mismatched RAIDZ1/2 (which makes all drives become the size of the smallest disk). I would recommend a mirrored setup for home use due to its flexibility - it gives up more space than RAIDZ but it’s able to be upgraded easier in the future, so you can throw random drives that are on sale into your system when needed. You could write a book on ZFS’s complexities and trade-offs and I’m sure many have. TrueNAS itself is basically just a turn-key appliance to run a ZFS storage server, but the “Scale” version also comes with the ability to install apps via some Kubernetes+Docker thing. It’s still in beta and I hear a lot of people have problems with how the app system is designed, so if you go this route I’d recommend installing Debian/Alpine Linux under TrueNAS Scale in a VM with something like this method, and running normal Docker on that VM. TrueNAS is otherwise very locked down and if your usecase is not supported by them you’ll probably need to bail out to a VM anyway.

Proxmox + TrueNAS + Docker Host: This has all the caveats of ZFS from before. Proxmox is just a virtualization hypervisor that you can put other operating systems on, via VMs and LXCs. The easiest way to use it in a NAS configuration is to install Proxmox on the bare metal, then spin up a TrueNAS Core/Scale VM and pass through your HDDs to that (may require special hardware consideration). You’ll probably want to run a minimal Debian/Alpine Linux VM under Proxmox to hold your Docker stack. Then you can use an NFS/SMB mount to get access to your ZFS storage from your Docker VM. You can also run ZFS raw on Proxmox without the GUI of TrueNAS, but you’ll have to manage it by CLI. Proxmox can be more difficult to understand than the other architectures, but personally I think it’s easier to use once you do. It allows greater flexibility on the software side via snapshotting VMs and building up/tearing down operating systems at-will.

Proxmox + OpenMediaVault + SnapRAID + MergerFS + backed by BTRFS disks: Same as Proxmox+TrueNAS, except instead of TrueNAS you run OpenMediaVault’s storage stack to give yourself flexibility with HDDs. You’ll might also want to move your Docker stack into its own VM instead of running it on OpenMediaVault, but this isn’t required. While this is technically an option, it feels a bit weird. If you want to dive head-first into a robust server setup but don’t want to buy a bunch of new drives, this could work in a pinch.

Personally my two recommended options are the OpenMediaVault stack or the Proxmox+TrueNAS stack, depending on if you want to buy new drives for a clean storage layout. Keep in mind these blurbs are just a crash course on each option and there’s a lot more going on behind the scenes that will also need consideration/planning.

Freeman,

Thank you a lot! I’ll look into it!

LeonardHawksmoor, w Is there a way to seed things I have downloaded but already deleted the torrent for?
@LeonardHawksmoor@mastodon.online avatar

@luthis

Go back to the tracker you got the file from and re-download the torrent. Make sure your client is pointing to the correct location where the file is stored. [set location, verify local data] and it should just seed it.

luthis,

Dam, I was hoping there would be an easier way

cooopsspace,

It is literally that easy.

The torrent client will just see the file in the correct spot on disk and assume it’s downloaded already.

rambos,

Dude if you are always using the same download folder you just have to start torrent again. It cant be easier unless someone else do it for you

Kitikuru, w With PLEX blocking Hetzner Hosting, I'm thinking of Moving to Jellyfin, but I have some questions.

I’m curious on how you have your setup and which tier you have? I currently have a basic tier virtual server with them for a few microservices

Vaggumon, (edited )
@Vaggumon@lemm.ee avatar

I have 2 servers through Hetzner, both I got from the auction side of the site.

My lower end server is what I use to run my seed box and up till now PLEX. I use the Higher end server to run some work projects and for experimenting with.

$75 US Per Month:

  • CPU - Intel Core i9-9900
  • RAM - 128 GB
  • Drives - 2x 10TB (RAID 1) + 1x 512 GB NVME SSD
  • Running Ubuntu as the OS.

$145 US Per Month:

  • CPU - AMD Ryzen 9 5950X
  • RAM128 GBDrives
  • Drives - 2x 4TB SSD (RAID 1) + 1x 480 GB NVME SSD
  • Usually runs some flavor of Linux.
Kitikuru,

Thanks! I just found out about the auction option through this post. I’m curious, given the price per month, wouldn’t it be better to self host with similar hardware? Higher upfront cost but lower over time I’d think?

Just curious because I’m thinking about switching up my setup, self hosting Plex currently but lack the bandwidth that I’d likely get if I moved to a hetzner server.

Vaggumon,
@Vaggumon@lemm.ee avatar

Oh yeah, would be lower cost over time for sure. For me though, internet is kind of crap in my area and the work server gets a ton of access from coworkers. And my sister in another state watches movies and tv shows on my Plex. Both these server get over 1.2 gbps up and down. There is also no cost if I have a hardware failure. There are pros and cons for sure, like I’ve been wanting to do some stuff that could really benefit from a GPU but not really an option with the auction stuff.

Kitikuru,

Awesome. Yeah that would be one of my concerns for what I have now. My internet service is some pretty terrible residential internet so my upload speeds are absolute garbage here but I have some good hardware for Plex/jellyfin.

How’s transcoding on the hetzner server? Any issues there at all? In any case thanks for all the info!

Vaggumon,
@Vaggumon@lemm.ee avatar

99% of stuff worked fine, but when I had issues it was a random error about server being under powered which wasn’t true at all lol. Someone on a forum suggested using the official windows app from the store and once I moved to that for client side access, never got the error again.

Keep in mind though, if you plan to do Plex from Hetzner, after Oct 2nd it won’t work anymore. But others here have suggested JellyFin instead. I’ll be testing that out this weekend, and if all is good moving over from Plex all together.

Kitikuru,

Yeah I’ve been wanting to make the full jump to jellyfin anyway. The only thing holding me back really was some extra services I was using that were Plex only. Posterr for example, but jellyfin is on the roadmap and I can just roll my own version until then. The mobile clients have at least gotten pretty good as well for JF.

Vaggumon,
@Vaggumon@lemm.ee avatar

Well, good luck, and I hope if you try it out, Hetzner works out for you as well as it has for me.

Kitikuru,

Thanks! And again thank you for all the answers and advice!

Nakoichi, w Legendary PC developer says Denuvo is “a punishment to the consumer”
@Nakoichi@hexbear.net avatar

Abolish intellectual property (and private property in general)

anarchrist, (edited )

There was a big high wall there that tried to stop me.

The sign was painted, said ‘Private Property.’

But on the backside, it didn’t say nothing.

This land was made for you and me.

Trebach, (edited )

And the sign said anybody caught trespassing
Would be shot on sight.
So I jumped over the fence and I yelled at the house,
"Hey, what gives you the right
To put up a fence to keep me out
Or to keep mother nature in?"
If God was here he'd tell you to your face
"Man, you're some kind of sinner!"

PolarisFx, (edited ) w Ripping Audible Audiobooks
@PolarisFx@lemmy.dbzer0.com avatar

I checked out OpenAudible posted in this topic and it seems interesting, and might be a better choice. But if you’re looking to rip your audible files yourself you’ll want inAudible: github.com/rmcrackan/inAudible

There are other options around, but none of them are as free or as good as inAudible, IMO.

Fermiverse,

Ripping myself is what I did with Libation as suggested here. You log into your audible account when starting the software for the first time, your libary is shown and you can start to download.

When adjusting the auto tagging then audiibookshelf automatically sorts the stuff in the correct way with series etc.

Perfect combination and totally free.

FractalsInfinite, w Is It Farewell To The Internet Archive?

Anna’s archive acts as a drop in replacement for libgen and z-library, also doesn’t cost anything

MalReynolds,
@MalReynolds@slrpnk.net avatar

doesn’t it rely on them ? more of an indexer…

FractalsInfinite,

No, more like a mirror in that it hosts all of zlib and libgen’s content as well as providing torrent and ipfs links for the files (which they seed)

MalReynolds,
@MalReynolds@slrpnk.net avatar

And yet when libgen was broken a couple of days ago it sent me to the broken libgen for the (admittedly obscure) thing I was after. Perhaps caching I dunno. Still, glad it’s there…

FractalsInfinite, (edited )

From what I see, there are 4 5 options on annas-archive.org

  1. Use fast(but fee charging) direct download
  2. Use ipfs
  3. use torrents
  4. Go to source pages (libgen and/or zlibrary)
  5. Slow direct download [Edited]

It sounds like you clicked the link to the source as opposed to the mirrors

MalReynolds,
@MalReynolds@slrpnk.net avatar

Nah, in this case there was only 4. I’ve seen the others before.

FractalsInfinite,

Huh, it seems it depends on the existing sources, I’m not particularly sure how that works

5ubieee,

Not everything is mirrored yet, so some searches will only lead to external sources

annas-archive.org/datasets

Jaysyn, w Can they even track pirated installs ?
@Jaysyn@kbin.social avatar

Which company will become insolvent 1st, Twitter or Unity?

rockhandle,
@rockhandle@lemm.ee avatar

I would place my bets on unity. It has tougher competition imo

  • Wszystkie
  • Subskrybowane
  • Moderowane
  • Ulubione
  • FromSilesiaToPolesia
  • Spoleczenstwo
  • rowery
  • giereczkowo
  • lieratura
  • Blogi
  • test1
  • muzyka
  • slask
  • Psychologia
  • ERP
  • fediversum
  • motoryzacja
  • Technologia
  • esport
  • tech
  • nauka
  • krakow
  • sport
  • antywykop
  • Cyfryzacja
  • Pozytywnie
  • zebynieucieklo
  • piracy@lemmy.dbzer0.com
  • niusy
  • kino
  • LGBTQIAP
  • opowiadania
  • warnersteve
  • Wszystkie magazyny