Written 3 Sep 2026. This is a how-to, not a product card.
Copy the house folder to another old computer
A second copy of the house folder, over the house network to another old PC. Not only a USB stick. You don't need a NAS for this.
Only have one computer so far? The USB path is enough: a backup of the house folder. Haven't made a house folder yet? Start with a file share. This note is only the second-computer copy.
Skip until you have two boxes on the house network
You need the computer that holds the share, plus another old PC that already has Debian or Ubuntu Server and SSH from the couch. Both stay on the house network. Don't forward port 22. Skip this if you only have one machine; use a USB disk instead.
What this is
Same tool as the USB backup: rsync. Instead of writing to a plugged-in disk, it copies over SSH to the other computer. Next time you run it, only changed files move. You don't buy Synology Backup or a cloud plan for a folder of photos.
1. Write down the other computer's address
On the second old PC, find its house number the same way you did for the first:
hostname -I
Or look it up in the router list: find it on the house network. Write down the login name you use on that second box too. You'll need both for the copy.
2. Prove SSH works from the first computer
SSH into the computer that holds the share. From there, reach the second box:
ssh otheruser@other-address
Swap otheruser and other-address for the real login and number. Accept the host key the first time if SSH asks. When you get a shell on the second box, type exit and come back. If this fails, fix SSH on that second box first: SSH from the couch.
3. Make a landing folder on the second box
Still on the second box (SSH in again if you left), make a folder for the copy:
mkdir -p ~/share-backup
That lands in the other user's home. You don't need a second Samba share for this. A plain folder is enough.
4. Copy from the first computer
Back on the computer that holds the house folder, run:
rsync -a /srv/share/ otheruser@other-address:share-backup/
Trailing slashes matter. They tell rsync to copy the contents of the share into that backup folder. Leave both slashes on. Swap the path if your share lives somewhere else. The first run can take a while on Wi-Fi. Plug both computers into a cable if you can, for a big photo dump.
Want a dry look first? Add -n once so rsync only prints what it would copy:
rsync -an /srv/share/ otheruser@other-address:share-backup/
Then drop the n and run the real copy.
5. Check that files landed
SSH into the second box again. List what arrived:
ls ~/share-backup
Pick one file you know should be there and open it, or check size with du -sh ~/share-backup. A green terminal without a look is how people learn the copy was empty. Same idea as check that the backup actually copied, just on the other computer instead of a USB disk.
Do it again next week
Same rsync command. Unchanged files stay put. Changed ones move. A phone reminder is enough at first. After one checked copy works, you can put that command on a weekly timer on the first computer: back up the folder every week without remembering.
What this is not
This is not RAID. Two computers with the same folder is still a backup only if a problem on one cannot wipe the other. This is not a reason to buy a NAS tonight. It is not opening SSH to the internet. Keep both boxes on the house network: keep it on the house network.
What next
USB still works as a third copy you can unplug and put in a drawer: a backup of the house folder. Confirm one file can come back: restore one file from the USB backup (same idea if you pull a file back from the second box with rsync the other way). A VM is still later: what a VM is.
Skip
- Skip buying a NAS for this job.
- Skip RAID. RAID is not a backup.
- Skip restic and Borg on day one.
- Skip forwarding port 22 so "backup works from anywhere."
- Skip cloud until a second house copy exists.
- Skip this if you only have one computer. Use USB instead.
Sources
Debian: rsync man page. Ubuntu: rsync man page. Official pages only. For the USB path, see a backup of the house folder. For the share this copies, see a file share. For SSH on the second box, see SSH from the couch.