this post was submitted on 11 Jul 2026
32 points (100.0% liked)

Linux Questions

4082 readers
1 users here now

Linux questions Rules (in addition of the Lemmy.zip rules)

Tips for giving and receiving help

Any rule violations will result in disciplinary actions

founded 3 years ago
MODERATORS
top 24 comments
sorted by: hot top controversial new old
[–] Successful_Try543@feddit.org 20 points 2 weeks ago (1 children)
[–] Telodzrum@lemmy.world 11 points 2 weeks ago (2 children)
[–] rozodru@piefed.world 10 points 2 weeks ago (1 children)

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.

[–] lambisio@feddit.cl 2 points 2 weeks ago

You can always just stick to the last non-AI version.

[–] z3rOR0ne@lemmy.ml 2 points 2 weeks ago

They could also use openrsync.

[–] TallonMetroid@lemmy.world 13 points 2 weeks ago

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.

[–] just_another_person@lemmy.world 8 points 2 weeks ago (1 children)

You need to be more specific. Are you asking about link method, or software tool?

[–] daggermoon@piefed.world 4 points 2 weeks ago (4 children)

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.

[–] SE_DeepFried@lemmy.dbzer0.com 12 points 2 weeks ago (1 children)
[–] daggermoon@piefed.world 3 points 2 weeks ago

This will work. I completely overlooked this one. Thank you!

[–] MalReynolds@slrpnk.net 5 points 2 weeks ago* (last edited 2 weeks ago) (1 children)

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

[–] daggermoon@piefed.world 4 points 2 weeks ago (1 children)

We're both using CachyOS with KDE Plasma. I found a solution though, Thank you!

[–] one_old_coder@piefed.social 0 points 2 weeks ago (1 children)

I found a solution though

Give us the solution then.

[–] daggermoon@piefed.world 1 points 2 weeks ago

I said it in another comment. LocalSend will fit my use case perfectly.

[–] Ftumch@lemmy.today 2 points 2 weeks ago* (last edited 2 weeks ago)

If you're looking for something that's easy to use, you could try LocalSend.

[–] BCsven@lemmy.ca 2 points 2 weeks ago

Syncthing if you need a common folder that auto updates between you both

[–] Evil_Incarnate@sopuli.xyz 5 points 2 weeks ago

Take the drive out and put it in the other computer.

Or be patient and let it go overnight.

[–] hendrik@palaver.p3x.de 3 points 2 weeks ago* (last edited 2 weeks ago)

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

[–] Nurgus@lemmy.world 2 points 2 weeks ago

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.

[–] filister@lemmy.world 2 points 2 weeks ago

Good ol' rclone

[–] iocase@lemmy.zip 1 points 2 weeks ago

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.

[–] Kolanaki@pawb.social 1 points 2 weeks ago* (last edited 2 weeks ago)

The best way? External drive. I mean, if they're on the same local network presumably you physically have access to both machines.

[–] moonpiedumplings@programming.dev 1 points 2 weeks ago* (last edited 2 weeks ago)

http://pairdrop.net/

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.

[–] TheKrill@lemmy.world 1 points 2 weeks ago

Everything on the NAS.

Then network shares are the answer.