diff options
author | Nicholas Johnson <nick@nicholasjohnson.ch> | 2023-02-15 00:00:00 +0000 |
---|---|---|
committer | Nicholas Johnson <nick@nicholasjohnson.ch> | 2023-02-15 00:00:00 +0000 |
commit | 9d342e03316c552168dba6db8151a3bd01effcc354a3437201d0459e50512d6a (patch) | |
tree | 05859b4bc70183ff75198f0f0110239cb5e9a1813b9835155798480c1dfab155 /content | |
parent | 1063ff6dcb8e654cf8c707294f84d861c6047e1d2b39a638dc5eaed9b12bfbee (diff) | |
download | journal-9d342e03316c552168dba6db8151a3bd01effcc354a3437201d0459e50512d6a.tar.gz journal-9d342e03316c552168dba6db8151a3bd01effcc354a3437201d0459e50512d6a.zip |
Convert refs: how-to-transfer-large-files-from-one-computer-to-another
Diffstat (limited to 'content')
-rw-r--r-- | content/entry/how-to-transfer-large-files-from-one-computer-to-another.md | 28 |
1 files changed, 6 insertions, 22 deletions
diff --git a/content/entry/how-to-transfer-large-files-from-one-computer-to-another.md b/content/entry/how-to-transfer-large-files-from-one-computer-to-another.md index dea4961..84717bd 100644 --- a/content/entry/how-to-transfer-large-files-from-one-computer-to-another.md +++ b/content/entry/how-to-transfer-large-files-from-one-computer-to-another.md @@ -2,27 +2,26 @@ title: "How to Transfer Large Files From One Computer to Another" date: 2022-02-24T00:00:00 draft: false -makerefs: false --- # How Not to Transfer Large Files The average netizen has no idea how to transfer large files to others securely. And I can't really blame them for their ignorance because most websites instructing how to do it have really bad advice. ## The Corporate Cloud -For example, there is a WikiHow article[1] that has a few suggestions on how to send large files. The first is uploading your large files to Google Drive and sharing the link. What could possible be wrong with uploading your personal files to a service run by a known surveillance monster which requires you to sign up and give lots of personal information as well as running tracking scripts in your browser? +For example, there is a [WikiHow article](https://web.archive.org/web/20220223081322id_/https://www.wikihow.com/Send-Large-Files-to-Another-Computer-Using-the-Internet) that has a few suggestions on how to send large files. The first is uploading your large files to Google Drive and sharing the link. What could possible be wrong with uploading your personal files to a service run by a known surveillance monster which requires you to sign up and give lots of personal information as well as running tracking scripts in your browser? It also suggests Microsoft Onedrive, which of course is also a service run by a known surveillance monster which requires signing up and giving lots of personal information. All the suggestions involve using third-party cloud services, trusting company computers with your data. And WikiHow isn't alone in its bad advice. Other online articles give similar advice. ## Email -Emailing large files to others usually doesn't work due to attachment size limits on either the sender or receiver side. And when it does work it's still highly insecure and cannot be made secure. I discuss how to mitigate the security issues in a separate entry[2], but that's only for if you have no other choice. +Emailing large files to others usually doesn't work due to attachment size limits on either the sender or receiver side. And when it does work it's still highly insecure and cannot be made secure. I discuss how to mitigate the security issues in a [separate entry](/2020/10/29/using-email/), but that's only for if you have no other choice. Even if you take the precautions laid out in my previous entry about email, the person you're corresponding with almost certainly doesn't. Even if you PGP-encrypt, email services can infer that the email contains a file based on the size. Then they know when you sent the file, who you sent it to, the IP address you sent it from and the IP address that received it, what email client was used to send and receive it and possibly even more. ## Social Media Websites People sometimes use ridiculous roundabout methods to transfer large files, such as uploading HD videos to social media such that only the recipient has permission to see the file, waiting for the recipient to download it, then immediately deleting it. -This approach requires the sender and recipient to sign up to the same social media, which is always a hyperaddictive attention-destroying surveillance monster which executes proprietary obfuscript in the browser that surveils and fingerprints users without obtaining meaningful, informed consent[3]. +This approach requires the sender and recipient to sign up to the same social media, which is always a hyperaddictive attention-destroying surveillance monster which executes proprietary obfuscript in the browser that surveils and fingerprints users without obtaining meaningful, [informed consent](/2021/08/21/manufacturing-agreement/). ## Messaging Applications For small files like photos, videos, and documents, one of the most common ways people transfer them is through messaging applications. The popular messaging apps can't share large files. Even the popular messaging apps in the free software world can't. This is because they have file size limits because they are either federated or centralized and the files have to be stored on remote servers with limited capacity. @@ -38,10 +37,10 @@ If the recipient is in close physical proximity to you and you trust them, you c FAT32 only supports a 4 GB max file size. If a file is too large for the encrypted volume, Linux offers the split command to split it into smaller, more manageable chunks and the receiving machine only needs the cat command to piece the file back together. ## Magic Wormhole -If you're far from the recipient, Magic Wormhole[4] is a good option to transfer arbitrarily large files peer to peer. It's also cross-platform and uses PAKE[5], which makes it both secure and easy to use. +If you're far from the recipient, [Magic Wormhole](https://github.com/magic-wormhole/magic-wormhole) is a good option to transfer arbitrarily large files peer to peer. It's also cross-platform and uses [PAKE](https://www.wikipedia.org/wiki/Password-authenticated_key_agreement), which makes it both secure and easy to use. ## OnionShare -If you need to transfer large files to multiple remote recipients without revealing your IP address, there's OnionShare[6]. Like Magic Wormhole, it's also secure and cross-platform. Unlike with Magic Wormhole though, only one party (sender or receiver) needs OnionShare installed. The other just needs Tor Browser. +If you need to transfer large files to multiple remote recipients without revealing your IP address, there's [OnionShare](https://onionshare.org/). Like Magic Wormhole, it's also secure and cross-platform. Unlike with Magic Wormhole though, only one party (sender or receiver) needs OnionShare installed. The other just needs Tor Browser. ## Torrenting If you have large files you want to share with multiple people efficiently and you aren't concerned about confidentiality or protecting your IP address, the fastest way is creating a torrent using any torrent client. @@ -49,7 +48,7 @@ If you have large files you want to share with multiple people efficiently and y Unlike the client-server architecture used by Magic Wormhole and OnionShare where you act as a server sending the files to the client, peers in a torrent help upload chunks of your file to others who want a copy. Peers can continue to share the file even after you go offline. ## LAN File Sharing -For computers on the same LAN, there's plenty of software for managing a shared directory of large files. There's Rsync[8], NFS[9], SSHFS[10], Samba[11], and SFTP[12]. +For computers on the same LAN, there's plenty of software for managing a shared directory of large files. There's [Rsync](https://www.wikipedia.org/wiki/Rsync), [NFS](https://www.wikipedia.org/wiki/Network_File_System), [SSHFS](https://www.wikipedia.org/wiki/SSHFS), [Samba](https://www.wikipedia.org/wiki/Samba_%28software%29), and [SFTP](https://www.wikipedia.org/wiki/SFTP). These programs can also share files to the public internet, but most of you reading this won't have a static public IP address or domain name, so it's irrelevant. I often use Rsync for its versatility, security, and efficient delta-transfer algorithm. @@ -57,18 +56,3 @@ These programs can also share files to the public internet, but most of you read Most people still transfer large files using the dumb ways. When I search for the file-sharing tag on Github, I get 947 results. There's plenty of good software out there for transferring large files and lots of it is so easy to use a monkey could figure it out. There's no excuse for relying on the corporate cloud, email, or social media to transfer large files if you have the choice. Use a real file transfer program instead. - - -Link(s): -[1: WikiHow: How to Send Large Files to Another Computer Using the Internet](https://web.archive.org/web/20220223081322id_/https://www.wikihow.com/Send-Large-Files-to-Another-Computer-Using-the-Internet) -[2: Using Email](/2020/10/29/using-email/) -[3: Manufacturing Agreement](/2021/08/21/manufacturing-agreement/) -[4: Magic Wormhole](https://github.com/magic-wormhole/magic-wormhole) -[5: PAKE](https://www.wikipedia.org/wiki/Password-authenticated_key_agreement) -[6: OnionShare](https://onionshare.org/) -[7: PrivateBin](https://privatebin.info/directory/) -[8: Rsync](https://www.wikipedia.org/wiki/Rsync) -[9: NFS](https://www.wikipedia.org/wiki/Network_File_System) -[10: SSHFS](https://www.wikipedia.org/wiki/SSHFS) -[11: Samba](https://www.wikipedia.org/wiki/Samba_(software)) -[12: SFTP](https://www.wikipedia.org/wiki/SFTP) |