-
![](https://image.nostr.build/a7a185aef33311126639aa4ac3656cfd41fbd385045ab769d759f464efdcdcef.jpg)
@ captjack 🏴☠️✨💜
2025-02-08 22:59:35
#trickle works by taking advantage of the Unix loader preloading. Essentially it provides, to the application, a new version of the functionality that is required to send and receive data through sockets. It then limits traffic based on delaying the sending and receiving of data over a socket. trickle runs entirely in userspace and does not require root privileges.
For Ubuntu users, install it by running
sudo apt install trickle
And as an example, run "somerelay" while limiting it to 2000kB/s download rate and 11100kB/s for upload:
trickle -sd 2000 -u 11100 somerelay
#linuxstr