My friend has folder on his computer with over 1.100 videos, in total it's about 300 GB.
He wants to hand me over the folder but I have no idea on how he should transfer everything over to my computer in the most efficient way possible.
My idea so far have been,
1. Just grab his harddrive and put it in my computer
2. Bring a portable hard drive over to his house
3. Rsync
4. Airtar / Wormhole
5. Torrent from his computer to mine
Do any of you have any better ideas?
[1] https://askubuntu.com/questions/41397/external-usb-hard-driv...
#2 would be portable hard drive. 300gb of video isn't enough to justify any syncing tools. Just drag and drop.
#3 rclone to Cloudflare R2 maybe, somewhere with no egress fees. Be about $5.
Most likely you want to settle on a process that verifies the copied files. If your friend uses M$ you could take a simple path and use a program like Terracopy [1] to be sure and just copy them all to a portable hard drive. (I've used it since working on a Win 10 system (whatever version it was) where quicker file copy was achieved by stepping back to iirc win 95 era and not verifying files.)
In linux there are many options - personally I tar folders up to 20 or 30 gigs using --verify (-W) ie tar -cvWf folder1 'folder1'/
... in your case you would need to direct the write of tar to the portable drive.