Debian, how to send large zip file 95GB?
Hi Send 95GB zip file, would email attachment work? How to receive same Zip size from windows computer?. Thanks, Anthony K
Hey a I use Thunderbird and it will automagically create a link to the large file using either Box or Dropbox. I have sent links to GB sized files (zipped or compressed) but never 95GB.Still, other than the time to create the link is directly proportional to the size of the zip you want to send I believe that 95GB will take quite a long time but it happen. You could do other work while it did its thing including emails. Once the file is uploaded and a link created it will show in the body of the email and then you can send. Hope that is of some help Brian On 5/4/19 8:48 AM, a wrote:
Hi
Send 95GB zip file, would email attachment work? How to receive same Zip size from windows computer?.
Thanks, Anthony K
_______________________________________________ nmglug mailing list nmglug@lists.nmglug.org http://lists.nmglug.org/listinfo.cgi/nmglug-nmglug.org
--
Hi, a writes:
Send 95GB zip file, would email attachment work?
Any common mail provider will block such a message, if you could even send it at all. The best way, if possible, would be to transfer the file via physical USB or hard disk, perhaps by mail. As the saying goes, you can't beat the throughput of sneakernet, but man, that latency... If that's not possible, I would host a HTTPS or SFTP server, giving a link to the recipient via phone call or email. I'd also split the file into sub-1GB chunks (with split: https://man.openbsd.org/split.1) and provide checksums (with cksum: https://man.openbsd.org/cksum.1), because odds are a 95 GB file will have short reads or other transient network issues, and you don't want to download the whole thing again. The file splitting procedure would be something like: $ split -b 500m bigfile.zip splitfile.zip. $ cksum -a sha256 splitfile.zip.* > checksums.txt Copy those to a web server, and the receive procedure would be something like: $ wget https://example.com/{checksums.txt,splitfile.zip.{a..z}{a..z}} $ cksum -C checksums.txt && cat splitfile.zip.* > bigfile.zip If all that seems like too much trouble, or the recipient won't have access to shell tools like cksum and cat, a third-party service like Dropbox or Mega would be the way, I suppose. But I bet you'd still have trouble getting a complete 95 GB file over a single connection without corruption or a short read. -- Anthony J. Bentley
participants (3)
-
a -
Anthony J. Bentley -
Brian O'Keefe