this post was submitted on 03 Jul 2026
25 points (100.0% liked)

Selfhosted

60409 readers
815 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:

Detailed Rules Post

  1. Be civil.

  2. No spam.

  3. Posts are to be related to self-hosting.

  4. Don't duplicate the full text of your blog or readme if you're providing a link.

  5. Submission headline should match the article title.

  6. No trolling.

  7. Promotion posts require active participation, with an account that is at least 30 days old. F/LOSS without a paywall has exceptions, with requirements. See the rules link for details.

Resources:

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

Questions? DM the mods!

founded 3 years ago
MODERATORS
 

Language warning.

Documented my journey backing up my Oracle Cloud server. With their latest changes to always free, I don’t think my instance will last very long. This isn’t a tutorial, there are probably many much better ways to do this.

you are viewing a single comment's thread
view the rest of the comments
[–] ramius345@sh.itjust.works 1 points 9 hours ago* (last edited 9 hours ago)

I've done similar things with ssh pipe tunneling and dd ala:

,,, dd if=/dev/sda | ssh user@host "dd of=/some/other/file/or/disk" ,,,

Should really do it while the root is ro, but in a pinch this will mostly be ok on a quiet machine.

You might be able to run rsync afterwards to spot check if you are paranoid.

If you didn't need block level I would have suggested just using rsync or rclone.