Create disk images it is often necessary to install on PC old games that were distributed on disks, on modern computers, which frequently do not have DVD drive. Just remember that protect games from illegal distribution - DRM, often incompatiblewith virtual drives
Let's learn how to create disk images.ISO files are disk images. A complete copy of a CD or DVD disc in one file. This file can be "mounted" and accessed as a virtual CD or DVD available as a physical disc.
In Linux you can create an ISO image using the terminal or the burning softwareincluded in your distribution. For example, in Linux Mint ISO image can be created usingutility, Brasero. To do this, open Brasero, select Disk copy and select the Disc to write to. The image will be created. In other distributions include other programs, but the essence remains the same - copy a physical disk to the image.
Clicking on the Properties button, you can choose where to save the image and can also choose the format for the generated image.
Also, you can create an image with the command in the terminal:
TerminalShekin@mylinuxmintpc~$sudo dd if=/dev/cdrom of=/home/username/image.iso
Replace /dev/cdrom with the path to your optical drive, e.g. /dev/dvd and/home/username/cd.iso — the path to the future ISO image.
The resulting disk can be mounted by the mount command, right there in the terminal orwith the graphical tool to choose according to your taste.
Good Luck!!!
Author: Shekin
Author: Shekin
Source: https://mintguide.org/other/525-how-to-create-the-disk-image-iso-in-linux-mint.html