Skip Navigation

How can I send 50gb+ file over internet to friend?

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.

55 comments
  • 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

    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.

  • 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 mistaken

     <>
        
    ssh -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.

  • Qtox should work? It's not a very good chat software and a bit cumbersome, but it allows direct file transfers.

55 comments