32

Hello selfhosted! Sometimes I have to transfer big files or a large amounts of small files in my homelab. I used rsync but specifying the IP address and the folders and everything is bit fiddly. I thought about writing a bash script but before I do that I wanted to ask you about your favourite way to achieve this. Maybe I am missing out on an awesome tool I wasn't even thinking about.

top 43 comments
sorted by: hot top controversial new old
[-] sugar_in_your_tea@sh.itjust.works 5 points 3 hours ago

What's wrong with rsync? If you don't like IP addresses, use a domain name. If you use certificate authentication, you can tab complete the folders. It's a really nice UX IMO.

If you'll do this a lot, just mount the target directory with sshfs or NFS. Then use rsync or a GUI file manager.

[-] grumuk@lemmy.ml 0 points 2 hours ago

I never even set up DNS for things that aren't public facing. I just keep /etc/hosts updated everywhere and ssh/scp/rsync things around using their non-fqdn hostnames.

[-] sugar_in_your_tea@sh.itjust.works 1 points 2 hours ago

You could also use mDNS to the same effect.

[-] motsu@lemmy.world 3 points 9 hours ago

smb share if its desktop to desktop. If its from phone to PC, I throw it on nextcloud on the phone, then grab it from the web ui on pc.

Smb is the way to go if you have identity set up, since your PC auth will carry over for the connection to the smb share. Nextcloud will be less typing if not since you can just have persistent auth on the app / web.

[-] Kit 29 points 23 hours ago

Not gonna lie, I just map a network share and copy and paste through the gui.

[-] Flamangoman@leminal.space 5 points 23 hours ago

Same lol, somebody please enlighten me on a faster way!

[-] theorangeninja@sopuli.xyz 3 points 23 hours ago

Sounds very straight forward. Do you have a samba docker container running on your server or how do you do that?

[-] Appoxo@lemmy.dbzer0.com 1 points 4 hours ago

Set up smb on my file share VM.
My dedicated docker host accesses it through an NFS mount.

[-] drkt_@lemmy.dbzer0.com 9 points 23 hours ago* (last edited 23 hours ago)

I just type sftp://[ip, domain or SSH alias] into my file manager and browse it as a regular folder

[-] tacocatgoat@lemmy.world 7 points 7 hours ago

YOU CAN DO THAT???

[-] blackbrook@mander.xyz 1 points 19 hours ago
[-] drkt_@lemmy.dbzer0.com 5 points 19 hours ago

Any file manager on Linux supports this

[-] Kit 4 points 21 hours ago

I have two servers, one Mac and one Windows. For the Mac I just map directly to the smb share, for the Windows it's a standard network share. My desktop runs Linux and connects to both with ease.

[-] Lv_InSaNe_vL@lemmy.world 1 points 18 hours ago

I dont have a docker container, I just have Samba running on the server itself.

I do have an owncloud container running, which is mapped to a directory. And I have that shared out through samba so I can access it through my file manager. But that's unnecessary because owncloud is kind of trash.

[-] e0qdk@reddthat.com 11 points 21 hours ago

People have already covered most of the tools I typically use, but one I haven't seen listed yet that is sometimes convenient is python3 -m http.server which runs a small web server that shares whatever is in the directory you launched it from. I've used that to download files onto my phone before when I didn't have the right USB cables/adapters handy as well as for getting data out of VMs when I didn't want to bother setting up something more complex.

[-] harsh3466@lemmy.ml 9 points 23 hours ago
[-] IsoKiero@sopuli.xyz 2 points 21 hours ago
[-] lemmylommy@lemmy.world 3 points 18 hours ago

WinSCP for editing server config

Rsync for manual transfers over slow connections

ZFS send/receive for what it was meant for

Samba for everything else that involves mounting on clients or other servers.

[-] boreengreen@lemm.ee 4 points 19 hours ago* (last edited 19 hours 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. No terminal needed and I can put the folders as favorites in the side bar.

[-] Lv_InSaNe_vL@lemmy.world 2 points 18 hours 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 3 points 15 hours ago

That's essentially the same as rsync

[-] sugar_in_your_tea@sh.itjust.works 1 points 4 hours ago

Just slower if you already have some of the files there.

[-] linuxguy@lemmy.gregw.us 9 points 23 hours ago
[-] atzanteol@sh.itjust.works 3 points 20 hours ago
[-] blackbrook@mander.xyz 8 points 19 hours ago

SCP, the protocol, is deprecated. scp, the command, just uses the SFTP protocol these days. I find its syntax convenient.

[-] atzanteol@sh.itjust.works 4 points 19 hours ago

Oh does it? I didn't realize that. I've just switched over to rsync completely.

[-] Sunbutt23@lemmy.world 2 points 20 hours ago

Checks username… yeah that tracks

[-] node815@lemmy.world 1 points 14 hours ago

I work from home, however my two systems (home and work) are on the same LAN, they don't see each other for file sharing. I get paid via direct deposit like everyone else which means my pay stubs are all electronic. I print those out and then use WinSCP to copy those over to my desktop. No other files are ever sent.

At home, depending on the amount of files, I either use SFTP via Filezilla, or if the mood strikes me and for a single file, I will just use SCP if I'm already on the cli which is most of the time it seems anymore doing work on my personal servers. I've found that SFTP is faster at transferring than doing a copy/paste to the NFS share to the same drive.

[-] PerogiBoi@lemmy.ca 2 points 17 hours ago

Ye old samba share.

But I do like using Nextcloud. I use it for syncing my video projects so I can pick up where I left off on another computer.

[-] jacksilver@lemmy.world 2 points 16 hours ago

Samba Bamba!!

[-] jaek@lemmy.world 3 points 20 hours ago

Magic wormhole is pretty dead simple https://magic-wormhole.readthedocs.io/en/latest/welcome.html#installation

I use this a lot at work for moving stuff between different test vms, as you don't need to check IPs/hostnames

[-] boreengreen@lemm.ee 1 points 19 hours ago* (last edited 19 hours ago)

As I understand it, the establishing of the connection is reliant on a relay server. So this would not work on a local network without a relay server and would, by default, try to reach a server on the internet to make connections.

[-] Mosfar@sh.itjust.works 4 points 21 hours ago
[-] lIlIllIlIIIllIlIlII@lemmy.zip 2 points 18 hours ago

Syncthing and/or ftp.

[-] magic_smoke 4 points 23 hours ago* (last edited 23 hours ago)
  • sftp for quick shit like config files off a random server because its easy and is on by default with sshd in most distros
  • rsync for big one-time moves
  • smb for client-facing network shares
  • NFS for SAN usage (mostly storage for virtual machines)
[-] muhyb@programming.dev 3 points 22 hours ago

As a lazy person, I just prefer sftp on thunar.

[-] Xanza@lemm.ee 3 points 23 hours ago

rclone. I have a few helper functions;

fn mount { rclone mount http: X: --network-mode }
fn kdrama {|x| rclone --multi-thread-streams=8 --checkers=2 --transfers=2 --ignore-existing --progress copy http:$x nas:Media/KDrama/$x --filter-from
~/.config/filter.txt }
fn tv {|x| rclone --multi-thread-streams=8 --checkers=2 --transfers=2 --ignore-existing --progress copy http:$x nas:Media/TV/$x --filter-from ~/.config/filter.txt }
fn downloads {|x| rclone --multi-thread-streams=8 --checkers=2 --transfers=2 --ignore-existing --progress copy http:$x nas:Media/Downloads/$x --filter-from ~/.config/filter.txt }

So I download something to my seedbox, then use rclone lsd http: to get the exact name of the folder/files, and run tv "filename" and it runs my function. Pulls all the files (based on filter.txt) using multiple threads to the correct folder on my NAS. Works great, and maxes out my connection.

[-] hendrik@palaver.p3x.de 2 points 23 hours ago* (last edited 23 hours ago)

I'd say use something like zeroconf(?) for local computer names. Or give them names in either your dns forwarder (router), hosts file or ssh config. Along with shell autocompletion, that might do the job. I use scp, rsync and I have a NFS share on the NAS and some bookmarks in Gnome's file manager, so i just click on that or type in scp or rsync with the target computer's name.

[-] MasterBlaster@lemmy.world 2 points 23 hours ago

By "homelab", do you mean your local network? I tend to use shared folders, kdeconnect, or WebDAV.

I like WebDAV, which i can activate on Android with DavX5 and Material Files, and i use it for Joplin.

Nice thing about this setup is that i also have a certificate secured OpenVPN, so in a pinch i can access it all remotely when necessary by activating that vpn, then disconnecting.

[-] aeno@discuss.tchncs.de 2 points 23 hours ago
[-] ptz@dubvee.org 2 points 23 hours ago* (last edited 23 hours ago)

Depends on what I'm transferring and to/from where:

  • scp is my go-to since I'm a Linux household and have SSH keys setup and LDAP SSO as a fallback
  • sshfs if I'm too lazy to connect via SMB/NFS (or I don't feel like installing the tools for them) or I'm traversing a WAN
  • rsync for bulk transfer and backups
  • Snapdrop/Pairdrop for one-off file/text shares between devices with GUIs (mostly phone <--> PC)
  • SMB if I'm on a client PC and need to work with the files directly from the fileserver
  • NFS between servers
  • To get bulk data to my phone (e.g. updating my music library), I connect via USB in MTP mode and copy from the server via SMB or sshfs.
[-] neidu3@sh.itjust.works 1 points 23 hours ago* (last edited 23 hours ago)

rsync if it's a from/to I don't need very often

More common transfer locations are done via NFS

[-] iii@mander.xyz 1 points 23 hours ago

I have a shared syncthing folder on all my devices

this post was submitted on 18 Mar 2025
32 points (100.0% liked)

Selfhosted

44583 readers
1251 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 2 years ago
MODERATORS