Comment on What is your favourite way to transfer files in your homelab?
boreengreen@lemm.ee 4 weeks ago
rsync is indeed fiddly. Consider SFTP in your GUI of choice. I mount the folder I need in my file browser and grab the files I need.
Comment on What is your favourite way to transfer files in your homelab?
boreengreen@lemm.ee 4 weeks ago
rsync is indeed fiddly. Consider SFTP in your GUI of choice. I mount the folder I need in my file browser and grab the files I need.
Lv_InSaNe_vL@lemmy.world 4 weeks ago
If you want to use the terminal though, there is
scp
which is supported on both windows and Linux.Its just
scp [file to copy] [username]@[server IP]:[remote location]
CmdrShepard42@lemm.ee 4 weeks ago
That’s essentially the same as rsync
sugar_in_your_tea@sh.itjust.works 4 weeks ago
Just slower if you already have some of the files there.