Last active 1733403116

Revision 588c2ddd9d77743848c20b765f0cabf679d6a378

gistfile1.txt Raw
1sudo apt update
2sudo apt install aria2 -y
3
4wget https://download.anduinos.com/AnduinOS.latest.torrent
5
6sudo ufw allow 6881
7
8while true; do
9 aria2c --enable-dht=true --enable-dht6=true --enable-peer-exchange=true --bt-seed-unverified=true --bt-save-metadata=true --dir=$(pwd) --listen-port=6881 AnduinOS.latest.torrent
10 sleep 5
11done