• marietta_man@feddit.nl
    link
    fedilink
    arrow-up
    49
    ·
    edit-2
    3 days ago

    Yes, this is what a CD drive is for. If you have CD-ROMs, you can image them for a perfect copy, or you can copy their files out like you would with any other drive.

    You can probably find an old computer with a CD drive for free to do it with.

  • neidu3@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    34
    ·
    3 days ago

    Ripping it to an ISO file is basically the “industry standard”. Something else I used to see when sailing the high seas back in the day is bin/cue pairs, but iso was by far the most prevalent. I have long since forgotten how this is done on windows, but on Linux it’s basically dd if=/dev/cdrom of=/home/studmuffin2000/somecd.iso

    • Em Adespoton@lemmy.ca
      link
      fedilink
      arrow-up
      23
      ·
      3 days ago

      Depends on the CD. If it’s just a data CD, iso is the way to go. If it’s a mixed mode CD with data plus audio, bin/cue will preserve the audio tracks but iso may not. Also, mixed Joliet/HFS CDs can lose one of the formats if imaged with an iso imager.

      The big thing is that you want to image the entire CD and not just the most recent track on the CD.

      • neidu3@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        8
        ·
        3 days ago

        That makes sense - I never looked into why bin/cue was sometimes used. Would that mean that bin/cue is better for multitrack and mixed mode CDs?

        • Em Adespoton@lemmy.ca
          link
          fedilink
          arrow-up
          1
          ·
          2 days ago

          Yes, because it records “all” the data.

          Other image formats also store the extended data at the start of the disc and the gap data between the tracks, but unless it’s an odd format or has some really nasty copy protection, that information isn’t usually useful.

  • Lasherz@lemmy.world
    link
    fedilink
    arrow-up
    34
    ·
    3 days ago

    I’m not sure if it’s still around, but Alcohol 120% used to be great for bit for bit copying to iso

      • xavier666@lemmy.umucat.day
        link
        fedilink
        English
        arrow-up
        3
        ·
        24 hours ago

        I am taken back into time by 20+ years. I remember hearing from my friends that it’s the best lightweight imaging tool

    • 9point6@lemmy.world
      link
      fedilink
      arrow-up
      13
      ·
      3 days ago

      It is still around actually! I looked into it a month or two ago when I was having some similar thoughts as OP. I found it quite cool they’ll let you download a windows 9x compatible version too for people using the images on a retro machine.

      I’ve done the DVDs I care about, and ensuring I’ve got FLACs of all my CDs is probably next.

      I’m deciding if it’s actually worth doing my PS1 games given I’ve already got a (not entirely legitimate) full 1g1r library on my media server, my rarest game is probably silent hill and that’s definitely already in there.

  • adarza@lemmy.ca
    link
    fedilink
    English
    arrow-up
    13
    ·
    3 days ago

    you can mostly just create ISO files from the discs.

    some original discs, especially games, may have a copy protection scheme (safedisc, securom, etc) that makes them unplayable without being run with the original media, though. there was some software back then that worked pretty well at ‘making backups’ of those discs. also note that some drives (the hardware itself) were better than others at running that software to make them. i haven’t kept up with that stuff in a very long time, so i don’t have a clue what exists today.

    • ComicalMayhem@lemmy.worldOP
      link
      fedilink
      arrow-up
      5
      arrow-down
      1
      ·
      3 days ago

      Good point. I’m not sure how old these are either, if the data is already corrupted or if they have disc rot or anything

  • floo@retrolemmy.com
    link
    fedilink
    English
    arrow-up
    5
    ·
    3 days ago

    If you let us know what operating system you’re using, we can make some recommendations for some apps to use for archiving your CD collection.

    As was mentioned in another comment, you can rip the CDs into images (.iso files) which you can store and mount anytime!

      • floo@retrolemmy.com
        link
        fedilink
        English
        arrow-up
        6
        ·
        edit-2
        3 days ago

        How are you with working in the command line? If so, just use:

        dd if=/dev/cdrom of=backup.iso

        • EtherWhack@lemmy.world
          link
          fedilink
          arrow-up
          3
          ·
          3 days ago

          Just be sure to double-check that both paths are correct before pressing enter, as ‘dd’ is a very powerful utility that can overwrite something if you aren’t careful.

          • floo@retrolemmy.com
            link
            fedilink
            English
            arrow-up
            2
            ·
            3 days ago

            Always good advice with Linux. I have, in the past, compared using the Linux command line to handling a loaded gun. It’s an extremely powerful tool, but you can literally kill your computer if you use it the wrong way.