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

Selfhosted

46677 readers
448 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
 

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.

Edit: I settled for SFTP in my GUI filemanager for now. When I have some spare time I will try to look into the other options too. Thank you for the helpful information.

(page 2) 23 comments
sorted by: hot top controversial new old
[–] [email protected] 2 points 2 months ago* (last edited 2 months 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.

[–] [email protected] 1 points 2 months ago

Ähm. So your not gonna like this but I just connect with vscode remote-ssh and drag'n drop em from the os file explorer into the vscode one.

So long story short scp I guess.

[–] [email protected] 1 points 2 months ago

you can use a regular ftp server with administrator and user rights, distribute rights to those who replenish, and those who just take - guests at home I transfer in this way from computer to computer without connecting them to a common network, what could be simpler? why invent some ways with keys or bash if there is a 40-year-old technology that just works great, and to open ftp it is enough to enter the IP address in the explorer

[–] [email protected] 1 points 2 months ago

I like unison personally. It is a bit more of a hassle but it works pretty well.

[–] [email protected] 1 points 2 months ago

rsync over an SMB share was pretty seamless.

[–] [email protected] 1 points 2 months 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.

[–] [email protected] 1 points 2 months ago (2 children)

I have a shared syncthing folder on all my devices

load more comments (2 replies)
[–] [email protected] 1 points 2 months ago

Resilion Sync

[–] [email protected] 1 points 2 months ago* (last edited 2 months ago)

Just regular old WinSCP, or XPipe for smaller stuff and editing config files.

I need a GUI, I'll use rsync to migrate a lot of data to a new server or something occasionally, but it's just a pain compared to a nice graphical file browser.

[–] [email protected] 1 points 2 months ago (2 children)

Snapdrop if they both have a gui/webbrowser. https://github.com/SnapDrop/snapdrop

Scp otherwise

[–] [email protected] 1 points 2 months ago

I used that before but usually I prefer the fork of snapdrop, pairdrop or localsend. Might want to try magic wormhole one day.

[–] [email protected] 1 points 2 months ago

Or https://github.com/schlagmichdoch/PairDrop if you don't want to support a project bought out by LimeWire

[–] [email protected] 1 points 2 months ago
rsync -are ssh from to@pc:/dir
load more comments
view more: ‹ prev next ›