Hello! I am new to Linux and wanted to see if I could get some opinions on apps to use to take backup ISO’s of old discs I own.

  • gregorum
    link
    fedilink
    English
    5
    edit-2
    5 months ago

    the standard disk manager should be able to make ISOs of any discs you mount with your machine

    • @108OP
      link
      English
      25 months ago

      Thanks

  • nickwitha_k (he/him)
    link
    fedilink
    English
    35 months ago

    The absolute simplest will be dd on the terminal. It is available on pretty much every distro or unix-like OS. No need for any special software or worrying about DRM. The command is not complex enough for that to matter. It just makes bit-wise copies of the in-file to the out-file.

    Here’s an example: dd if=/dev/sr0 of=/mnt/data/backups/Fugazi-Repeater.iso bs=64k conv=noerror,sync

    What does this do?

    if: Specifies the input file (the device should generally not be mounted but r/o storage like CDs isn’t likely to be problematic though might see fighting for I/O)

    of: Specifies the output file

    bs: Specifies the block size for the operation. There’s room to play with this value to optimize things

    conv: Specifies conversion symbols and flags. In this example, it is just specifying that dd should ignore errors when reading and fill in any gaps in the output file with NULL in order to maintain the data positioning (some DRM has used intentional read errors for copy protection).

    dd is a super useful tool for all kinds of things too. It can be used for imaging an SD card for a Raspberry Pi, testing IOPS, creating test data files (where size but not content are relevant), imaging bad disks to attempt data recovery, and a ton of other things. Here’s a man page:

    https://man7.org/linux/man-pages/man1/dd.1.html

  • Ekky
    link
    fedilink
    English
    25 months ago

    What kind of discs? I usually just go with dd when digitizing my old games and music. I imagine movies are a bit harder.

    • @108OP
      link
      English
      15 months ago

      Some older PC games I don’t want to lose