What are we doing for disk imaging theses days?

  • @moonpiedumplings@programming.dev
    link
    fedilink
    1
    edit-2
    10 months ago

    Ventoy. I love it so much, being able to have more than one bootable iso and storage on a usb.

    Although, it is slower to boot the more folders you have, since it scans all folders, but this is configurable

    I use nix-shell to get the ventoy cli for when I need to install it to a usb stick.

  • Para_lyzed
    link
    fedilink
    1
    edit-2
    10 months ago

    Just to throw another option out there, partclone will only copy data that is being used in a partition, without all the empty space. I don’t believe it helps for encrypted partitions, but you could always just image the unencrypted filesystem with partclone to a drive with full disk encryption to work around that (and still prevent storing data unencrypted). Saves a lot of space.

    Also, in the context of backups, I often prefer to use btrfs send to create and update backups through snapshots quickly and efficiently instead of imaging (though of course that requires you to use btrfs). Full imaging is pretty inefficient for my needs, and takes a lot of time.

  • @ReversalHatchery@beehaw.org
    link
    fedilink
    English
    310 months ago

    Definitely ddrescue. Unlike traditional dd, it can deal with failing drives, it’s operation is resumable, and has some other features that’s helpful. I would recommend using it even if your drive is fine.
    What it produces is a byte for byte copy just like dd.