New π—§π—Όπ—Ώπ—Ώπ—²π—»π˜ 𝗼𝗻 𝗙𝗿𝗲𝗲𝗕𝗦𝗗 [Torrent on FreeBSD] article on vermaden.wordpress.com blog.

https://vermaden.wordpress.com/2025/08/31/torrent-on-freebsd/

#verblog #aria2c #freebsd #pkg #qbittorrent #torrent #transmission

@vermaden

Great article!

The problem these days is that downloading torrents from the masses and from the "clear" network (public trackers) has become risky. Many have moved to private trackers.

@vermaden You've just reminded me to add the latest GhostBSD ISOs to my torrent jail. :)

@vermaden Incredible post! TIL about qBittorent able to search through a lot of various trackers β€” I didn't have such power with rtorrent πŸ˜„!

UPDATE: removed links to outdated blacklists β€” see the comment below

It should be noted that qBittorrent supports various blacklists in p2p format β€” so with the next small script some of the bad actors (distributing broken files, viruses, etc) could be blocked:

#!/bin/sh

# Download list to block bad actors:
cd ~/.config/qBittorrent/ || exit
wget 'http://link-to-blocklist1' -O antip2p.p2p.gz
wget 'http://link-to-blocklist2' -O badpeers.p2p.gz
gzip -fvd antip2p.p2p.gz
gzip -fvd badpeers.p2p.gz
cat antip2p.p2p badpeers.p2p > blocklist.p2p
rm -v antip2p.p2p badpeers.p2p
ls -l blocklist.p2p

@evgandr @vermaden Didn't those lists stop getting updates many, many years ago?

https://forum.netgate.com/topic/104235/iblocklist-com-is-either-dead-or-a-scam/6

I think firehol still updates though:
http://iplists.firehol.org/

IBlocklist.com is either dead or a scam?

All of the iblocklist.com URLs work for me…they just aren't being updated.  Most of the lists can be obtained directly from the original source...which is wh...

Netgate Forum

@evgandr

Thank you - being able to search just withing my Torrent client also made my life A LOT easier to say the lest - not to even count the time saved.

Thank You for sharing Your script to make it even better.