• 0 Posts
  • 12 Comments
Joined 1 year ago
cake
Cake day: February 16th, 2025

help-circle
  • I never said it couldn’t be done, hell, I’ve done it myself. Try being a human and asking me what my actual argument or suggested approach is, try re-reading what I actually said rather than assuming it is X just so you can dunk on it.

    Max TDP is completely irrelevant, that is about cooling capacity which completely sucks in a laptop, hence the chip limit. The relevant factor for a server is idle power draw at the wall outlet.

    For my servers I get second hand dell / hp / mini pcs for peanuts. Sips power, still work fine, still going strong, upgradeable storage etc. Second hand laptops of the same era are now useless ewaste.









  • I use aws s3 deep archive storage class, $0.001 per GB per month. But your upload bandwidth really matters in this case, I only have a subset of the most important things backed up this way otherwise it would take months just to upload a single backup. Using rclone sync instead of just uploading the whole thing each time helps but you still have to get that first upload done somehow…

    I have complicated system where:

    • borgmatic backups happen daily, locally
    • those backups are stored on a btrfs subvolume
    • a python script will make a read-only snapshot of that volume once a week
    • the snapshot is synced to s3 using rclone with --checksum --no-update-modtime
    • once the upload is complete the btrfs snapshot is deleted

    I’ve also set up encryption in rclone so that all the data is encrypted an unreadable by aws.