the standard disk manager should be able to make ISOs of any discs you mount with your machine
Linux
Welcome to c/linux!
Welcome to our thriving Linux community! Whether you're a seasoned Linux enthusiast or just starting your journey, we're excited to have you here. Explore, learn, and collaborate with like-minded individuals who share a passion for open-source software and the endless possibilities it offers. Together, let's dive into the world of Linux and embrace the power of freedom, customization, and innovation. Enjoy your stay and feel free to join the vibrant discussions that await you!
Rules:
-
Stay on topic: Posts and discussions should be related to Linux, open source software, and related technologies.
-
Be respectful: Treat fellow community members with respect and courtesy.
-
Quality over quantity: Share informative and thought-provoking content.
-
No spam or self-promotion: Avoid excessive self-promotion or spamming.
-
No NSFW adult content
-
Follow general lemmy guidelines.
Thanks
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:
Thanks
No problem!
What kind of discs? I usually just go with dd when digitizing my old games and music. I imagine movies are a bit harder.
Some older PC games I don’t want to lose