piracy

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

SweetMylk, w Thinking of getting a retro gaming machine.

“Emulators & ROMs” part of megathread. Think it’s not worth to buy something for the roms when you can donwload them. Why not get something modern like a steamdeck or ayaneo for a true handheld experience?

Haui,
@Haui@discuss.tchncs.de avatar

Thank you! I will check it out.

The main reason is because I dont have 400 bucks (much less 1000) to burn on something nice to have atm. I could absolutely use one of my two beefy computers if need be but I figured I‘d ask what other people do.

SweetMylk,

If you an android phone you can use that too with a cheap bluetooth controller.

Haui,
@Haui@discuss.tchncs.de avatar

Sadly I dont but thank you very much got your suggestion!

mara, w How to get into private trackers
@mara@pawb.social avatar

Carefully.

MrRazamataz, w Are SolidTorrents.to and Bitsearch.to down?
@MrRazamataz@lemmy.razbot.xyz avatar

Are you using a VPN? Your ISP may be blocking them.

spiritedpause,

I’m in the US, and as far as I know, ISPs only block websites if the federal government mandates it, in which case all ISPs would have to block it.

ArcaneSlime,

Not necessarily, they can block stuff if they want and some don’t like torrenting. Typically they just limit your speeds and send ineffective letters rather than block the site though, so it would still be weird.

mara, w How to route transmission through Mullvad?
@mara@pawb.social avatar

I personally shove Transmission into Docker:


<span style="color:#63a35c;">services</span><span style="color:#323232;">:
</span><span style="color:#323232;">  </span><span style="color:#63a35c;">wireguard</span><span style="color:#323232;">:
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">image</span><span style="color:#323232;">: </span><span style="color:#183691;">ghcr.io/linuxserver/wireguard
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">container_name</span><span style="color:#323232;">: </span><span style="color:#183691;">wireguard
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">cap_add</span><span style="color:#323232;">:
</span><span style="color:#323232;">      - </span><span style="color:#183691;">NET_ADMIN
</span><span style="color:#323232;">      - </span><span style="color:#183691;">SYS_MODULE
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">environment</span><span style="color:#323232;">:
</span><span style="color:#323232;">      - </span><span style="color:#183691;">PUID=1000
</span><span style="color:#323232;">      - </span><span style="color:#183691;">PGID=1000
</span><span style="color:#323232;">      - </span><span style="color:#183691;">TZ=Europe/Stockholm
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">ports</span><span style="color:#323232;">:
</span><span style="color:#323232;">      - </span><span style="color:#183691;">9091:9091/tcp
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">volumes</span><span style="color:#323232;">:
</span><span style="color:#323232;">      - </span><span style="color:#183691;">./config:/config
</span><span style="color:#323232;">      - </span><span style="color:#183691;">/lib/modules:/lib/modules
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">sysctls</span><span style="color:#323232;">:
</span><span style="color:#323232;">      - </span><span style="color:#183691;">net.ipv6.conf.all.disable_ipv6=0
</span><span style="color:#323232;">      - </span><span style="color:#183691;">net.ipv4.conf.all.src_valid_mark=1
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">restart</span><span style="color:#323232;">: </span><span style="color:#183691;">unless-stopped
</span><span style="color:#323232;">  </span><span style="color:#63a35c;">transmission</span><span style="color:#323232;">:
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">image</span><span style="color:#323232;">: </span><span style="color:#183691;">ghcr.io/linuxserver/transmission
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">container_name</span><span style="color:#323232;">: </span><span style="color:#183691;">transmission
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">ulimits</span><span style="color:#323232;">:
</span><span style="color:#323232;">      </span><span style="color:#63a35c;">nofile</span><span style="color:#323232;">: </span><span style="color:#0086b3;">1048576
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">environment</span><span style="color:#323232;">:
</span><span style="color:#323232;">      - </span><span style="color:#183691;">PUID=1000
</span><span style="color:#323232;">      - </span><span style="color:#183691;">PGID=996
</span><span style="color:#323232;">      - </span><span style="color:#183691;">TZ=Europe/Stockholm
</span><span style="color:#323232;">      - </span><span style="color:#183691;">USER=azurediamond
</span><span style="color:#323232;">      - </span><span style="color:#183691;">PASS=hunter2
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">volumes</span><span style="color:#323232;">:
</span><span style="color:#323232;">      - </span><span style="color:#183691;">./config:/config
</span><span style="color:#323232;">      - </span><span style="color:#183691;">/data:/data
</span><span style="color:#323232;">      - </span><span style="color:#183691;">/data/Torrents/dl:/downloads
</span><span style="color:#323232;">      - </span><span style="color:#183691;">/data/Torrents/inbox/start:/watch
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">network_mode</span><span style="color:#323232;">: </span><span style="color:#183691;">"service:wireguard"
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">depends_on</span><span style="color:#323232;">: [ </span><span style="color:#183691;">"wireguard" </span><span style="color:#323232;">]
</span><span style="color:#323232;">    </span><span style="color:#63a35c;">restart</span><span style="color:#323232;">: </span><span style="color:#183691;">unless-stopped
</span>

Make sure your mullvad config is called wg0.conf in ./config.

FrostyCaveman,

I do this except with github.com/qdm12/gluetun

(which apparently also can be used as a k8s sidecar container, am gonna try this soon as well)

christophski,

I’m trying this and it seems to be running. If I run curl 127.0.0.1:9091 I get a 403 which is expected but if I try to access the same from another computer on the network then the connection times out, any idea what could be the cause?

coaxil,

Oh yes, got your password :p

kingorgg,

All I see is *******.

Flyswat,

Really?

Password: ********

pewgar_seemsimandroid,

h2

newIdentity, w How to route transmission through Mullvad?

I use UFW

Oisteink, w How to route transmission through Mullvad?

You might want your program and the vpn interface to be in a separate namespace? Somewhat opposite this: www.wireguard.com/netns/#the-new-namespace-soluti

You don’t want all traffic routed, you want only this one app. More info here: linuxhint.com/use-linux-network-namespace/

Moonrise2473, w How to route transmission through Mullvad?
newIdentity,

Mullvad is using WireGuard though

jws_shadotak, w How to route transmission through Mullvad?

I highly recommend moving that to a docker or podman setup. Gluetun is the go-to for VPN traffic. Set up a little container and you can link other containers to it to route all their traffic through.

GregoryTheGreat,

The best way I’ve found.

nanometer, w Are SolidTorrents.to and Bitsearch.to down?
lukas, w How to get into private trackers
@lukas@lemmy.haigner.me avatar
zaknenou,

LMAO, I’ll just assume from now that there is a rentry page for every need a pirate has

ColdWater, w How to get into private trackers
@ColdWater@lemmy.ca avatar

That’s the best part, you can’t

IDeserveToBeLoved,

You absolutely can. A good portion of popular trackers have periodicall open signup events. Torrentleech has fairly often open signups. It’s big so it isn’t that easy to build up your ratio when you’re a drop in an ocean, but when you do it can open doors for some more prestigious trackers, although TL should be enough in 99% of cases if you aren’t into some (less popular) niche content. Watch r/opensignups on reddit if it’s still alive and soon enough you’ll be on too many trackers.

notepass,

I think /r/opensignups closed after the blackout

toxictenement,
@toxictenement@lemmy.dbzer0.com avatar

Theres r/trackersignups and the telegram channel r/opensignups migrated to of the same name.

notepass,

Thanks for the info!
I just checked trackersignups and found something spicy :)

It seems like r/opensignups telegram channel is just a bot posting the contents of /r/opensignups to it. So it is dead as well.

toxictenement,
@toxictenement@lemmy.dbzer0.com avatar

Try searching it on telegram for the one with the deluge icon.

odium, w Is Direct Connect still 'a thing'?

I’ve got bad news for you, what you consider a few years ago is two entire decades.

earthling,
@earthling@kbin.social avatar

No, that can't be right.

feral_hedgehog,
@feral_hedgehog@pawb.social avatar

Yeah no way, the 90s were something like 10 years ago and… wait now we’re in…
Ohh… Ohh no…

ipkpjersi, w How to get into private trackers

Trackers with open sign-ups are a good place to get started, also trackers with application forms are good for starting out too. If you have friends who are into private trackers and they know you are trustworthy and they have invites, that’s another way.

BlueAure, w Is Direct Connect still 'a thing'?

Purdue University still has a campus-only file sharing network called DTella that’s DC++. It been getting smaller, but there were a few members that shared 50+ TB at one point.

metaStatic, w Is Direct Connect still 'a thing'?

a few years ago in the late 1900s

ultratiem,
@ultratiem@lemmy.ca avatar

Oh man why didn’t you say it was last week!

JackbyDev,

In the 20th century

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