Hello,
I’m trying to send something to my gf’s friend (~50gb)
I tried creating my own torrent and was able to dl it on another device, but on her machine it stayed at 0% and wouldn’t let me connect to seed
Is FTP a good option? I set up a proxmox server last night but I don’t really know what I’m doing yet
Any guidance greatly appreciated, thanks.
Easiest and most secure way? Mail (or hand deliver) a flash drive. That’s how they transfer data between super computers and data centers. (AWS even has dedicated trucks to do it)
Now I wonder how much bandwith do post offices have theoretically
Randall did the math on this one: https://what-if.xkcd.com/31/
He assumes 64 GB microsd cards, if you use 1 TB ones, you could send 16 times more.
This is awesome, of course it’s xkdc. Thanks, now I can rest easy
Got a 1TB dataset sent once, guess it took around 3 days (Netherlands to France) so around 32Mbps. Not bad, not excellent.
Could send it over ATP - Avian Transfer Protocol.
Does require a USB stick and for your friend to train a pigeon though.
Never underestimate the bandwidth of a station wagon full of hard drives speeding down the highway.
This makes me wonder, what is the difference in the environmental cost of uploading/downloading this data vs. shipping a USB.
I would guess that shipping emissions would be higher than digital ones, but I don’t have any basis for that theory. (I’m just curious, not trying to say or imply anything here)
magnetic tapes or something
In one go? Look at Wormhole
But both ends must stay online until it is complete.
Gonna save this for later
I would use syncthing for this
I actually didn’t realize syncthing worked over the internet, I’ve been using it for years thinking it was LAN only haha
If it’s IP capable it will work over the internet, for future reference.
Absolutely the way to go
thanks I learned something new today
I use Syncthing for this things, you can even set a folder and keep it in sync with multiple users because it uses P2P
Don’t put FTP on the Internet if you don’t know how to secure it.
If you’re relatively nearby, you could just use a flash drive. Or mail one. If not, the other comments have good suggestions.
yep, id use sftp. my mail provider (proton) also gives me like 500gb in a ‘drive’ which is great for transfers like this
Btw: Might be that you’re behind a NAT (router) and that’s why bittorrent doesn’t connect. You’d need to figure out which port your torrent client is configured to listen on and then do “port forwarding” of that port to your machine in the router you got from your ISP. Or use something like UPnP that does this automatically.
Not sure if that applies in your case and it’s unsolicited advice… But a fairly common issue with bittorrent.
Syncthing
I would use Resilio Sync. It uses bittorrent under the hood. https://www.resilio.com/individuals/
Why not just make it a torrent file then and let it seed? I don’t see why paying for a service is required in this instance.
1 - Its not paid for personal use.
2 - OP said it can’t seed. Resilio have a discover helper service fot this situations.
Because he’s having trouble getting it to connect that way, and for reasons I don’t completely understand, Resilio Sync connections seem to be quicker and more reliable than using a traditional tracker as the only seed.
for reasons I don’t completely understand, Resilio Sync connections seem to be quicker and more reliable
Resilio runs a “relay” server to facilitate connections where neither peer has properly set up port forwarding. Only downside of Resilio is its not open source, so you just kinda have to take their privacy policy at face value. As long as op isn’t sending something super sensitive though, it probably is no big deal.
Thanks! It’s nice to finally understand why it’s so snappy.
Interesting thx
Magic Wormhole protocol. There’s a lot of clients out there. Here’s some:
There are website services where you both stay online and transfer directly.
There could be direct peer to peer transfer tools that are more robust.
If you want to go through a file transfer/hoster
- no limit https://gofile.io/
- 300 GB limit https://1fichier.com/
There’s some more, those are the top two in my bookmarks.
You’d do good of encrypting/7z-passwording if you don’t want others to see the content, just to make sure not to have to trust the hoster.
maybe SimpleHTTPServer (python) on the host and
curl -C
on the other machine?Create a multi-part archive (…probably about 250 parts…) with a strong password, upload each part to whatever the current equivalent to Megaupload is, and let them download it at their leisure.
With no accounts on either end, should only take about three months for each to be complete.
Alternatively, you could put it on a thumb drive and drive it over if they live fairly close.
you could put it on a thumb drive and drive it over if they live fairly close
or drop it in the mail if they dont.
My lazy way is NGINX with autoindex.
If it’s to go over untrusted network (e.g.: internet, school network) I use SSH for port forwarding. Lazy encryption.
Something like this works just fine:
worker_processes 1; daemon off; events { } http { default_type application/octet-stream; server { root /storage/emulated/0/sharedfile; listen 127.0.0.1:30000; location / { autoindex on; } } }
sharedfile is a directory with the files.
On remote machine if I am not mistakenssh -L 127.0.0.1:8080:127.0.0.1:30000 username@host
Then just access it in web browser on 127.0.0.1:8080 or whatever port you chose.
In PuTTY you can find this under “Tunnels”.Of course, you need to have SSH server set up as well.