I'd use rsync.
Linux Questions
Linux questions Rules (in addition of the Lemmy.zip rules)
- stay on topic
- be nice (no name calling)
- do not post long blocks of text such as logs
- do not delete your posts
- only post questions (no information posts)
Tips for giving and receiving help
- be as clear and specific
- say thank you if a solution works
- verify your solutions before posting them as facts.
Any rule violations will result in disciplinary actions
I wouldn’t:
yeah I remember reading this issue in may. I was like "nope, not using that anymore"
I work with AI agents on the daily to code review slop, I would 100% NOT trust them to be anywhere NEAR anything that deals with backups of ANY kind. THEY WILL fuck that up. it's a guarantee.
You can always just stick to the last non-AI version.
Do you have easy physical access to the other machine? If so, the absolute easiest way is to plug a removable device of some sort into your machine (your phone will likely work if you don't have any USB drives handy), copy the data over, and then plug the device into the other machine and move the data from the device.
You need to be more specific. Are you asking about link method, or software tool?
I'm sorry. I'm looking for a way to send files from my machine to my sister's machine on the same network. She's not very tech literate and I want to make it as easy as possible for her. I'd like a software solution. i thought about a private torrent but it seems impractical.
Maybe try localsend
This will work. I completely overlooked this one. Thank you!
Click on Network in your file browser, find Sis's machine, see if she has a smb share. If not, go get her / you share a folder. Drill down on her machine, find folder, drop files.
You might say what OS / DE you're using and she's using...
We're both using CachyOS with KDE Plasma. I found a solution though, Thank you!
I found a solution though
Give us the solution then.
I said it in another comment. LocalSend will fit my use case perfectly.
Syncthing if you need a common folder that auto updates between you both
If you're looking for something that's easy to use, you could try LocalSend.
Take the drive out and put it in the other computer.
Or be patient and let it go overnight.
Good ol' rclone
I've used various tools for that, they kinda all work. A Windows network share, or just type in "ssh://user@IP" into the Nautilus file explorer and drag and drop. You can bookmark the address so you don't need to type it in the next time. If you do it on a regular basis you can alternatively configure a NFS share and the other computer's filesystem will look just like any other directory and you can copy files as usual. If you want to transfer terabytes of files or they're millions of small files and you want nice error messages and continuation if something goes wrong, it will be worth doing it with rsync. But you need to look up the parameters (or use a helper), there's a bunch or arguments needed to make it do the right thing.
In any case it should transfer roughly 4GB per minute if you have a Gigabit network. I'd say ~250GB per hour. Maybe a bit more or less. But all methods will do it at the same speed unless you tweak it, change compression on transfer...
On Ubuntu, just install gnome-user-share on one machine and now you have a Sharing>File Sharing section in Settings. It's point and click.
The best way? External drive. I mean, if they're on the same local network presumably you physically have access to both machines.
I would make sure both sides are using ZFS then transfer ZFS send/receive snapshot diffs.
The neat thing about ZFS is by its design it already has the known differences between source and destination, so calculating the diff is trivial. It can also stream blocks as fast as your drives can read them since it's not handling individual files but block streams.
Everything on the NAS.
Then network shares are the answer.
Depends on how large though, or how many files. But I think this would work for <80 gig stuff reliably.
You might have to zip it up beforehand if it's many small files.