Questions tagged [iso]

ISO 9660 is a filesystem designed for use on CD-ROMs. An “ISO image” is a file that contains an ISO 9660 filesystem and can be burnt to a CD.

ISO 9660 is the standard filesystem for use on data CDs. It is commonly known as “ISO” for short. An “ISO image” is a file that contains an ISO 9660 filesystem.

ISO 9660 has several restrictions that are similar to MS-DOS FAT, in particular with file names consisting of 8 characters, a dot and 3 characters (the details of the restrictions are different, though). There are two common extensions that among other things allow longer file names:

  • Joliet allows 64 Unicode characters in a file name (UCS-2 only). It is supported by most unices and by Windows.
  • Rock Ridge allows 255-byte file names and supports symbolic links, permissions and other traditional unix metadata. It is supported by most unices.

To create an ISO image, you can use mkisofs from cdrtools or other tools such as Debian's fork genisoimage. Most CD burning programs can burn a directory tree, or a pre-made image.

To access an ISO image, mount is with a or with a filesystem (FuseISO or fuseiso9660).

425 questions
121
votes
6 answers

What's the best way to join files again after splitting them?

If I have a large file and need to split it into 100 megabyte chunks I will do split -b 100m myImage.iso That usually give me something like xaa xab xac xad And to get them back together I have been using cat x* > myImage.iso Seems like there…
cwd
  • 44,479
  • 71
  • 146
  • 167
52
votes
11 answers

What is the fastest way to extract an ISO?

Currently I'm mounting an ISO to a (readonly) directory (using mount -o loop command) and then copying the contents to another normal directory. This takes lot of time as the ISO is large. Is this the only way to do so, or is there some alternative?
user13107
  • 5,265
  • 10
  • 45
  • 62
52
votes
2 answers

Why are 64-bit distros often called 'amd64'?

I am downloading an ISO image of Lubuntu; they have two versions: 32 and 64. But why do they call the 64 version amd64 since they say that it works for Intel also?
Sigur
  • 2,411
  • 8
  • 34
  • 45
51
votes
3 answers

Create iso image from folder via terminal commands

How to create a iso image from a folder or single files via terminal commands? Currently i am doing this via Braseros GUI, but i want to do it with a shell script.
klingt.net
  • 1,615
  • 4
  • 17
  • 21
47
votes
3 answers

Is an ISO image file a filesystem in its own right?

I am trying to understand what the relationship a xxx.iso file has to the other aspects of a block device, e.g. partitions and a file system. It's common for people to describe accessing or making a .iso usable as "mounting the ISO". So to put the…
the_velour_fog
  • 11,840
  • 16
  • 64
  • 109
30
votes
3 answers

Installing Grub 2 on a USB flash drive

MultiBootISOs is a tool that let you install Grub on a USB flash drive. I really like it because it lets me boot from ISO files and let me put a bunch of ISOs on my USB and choose which one to boot. The problem is, this is a Windows tool, and I…
phunehehe
  • 20,030
  • 27
  • 99
  • 151
29
votes
5 answers

How can I convert a .cue / .bin ( with cdr tracks) image into a single .iso file?

How can I convert a .cue / .bin (cdr track) image into a single .iso file? I have Fedora 16 (x86-64) Linux 3.1.9-1.fc16.x86_64 #1 SMP Fri Jan 13 16:37:42 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux
Rafael
  • 392
  • 1
  • 3
  • 8
26
votes
2 answers

How to mount mdf image, iso9660 doens't work for it?

I have few .mdf images, that can be mounted with Alcohol 120%, but on Linux, is that possible? I've tried things similar to mount -o loop -t iso9660 XX.mdf /mnt/iso, but that doesn't work here, I got ISOFS: Unable to identify CD-ROM format.
daisy
  • 53,527
  • 78
  • 236
  • 383
23
votes
2 answers

Mount an iso without root access?

Is it possible for a user without root access to mount an arbitrary iso? If so how?
HandyGandy
  • 2,201
  • 3
  • 23
  • 30
23
votes
1 answer

`mount -o loop` changes mounted ISO image file

It looks like mount -o loop changes the mounted image file. I downloaded the ISO image file and checked its SHA-1 checksum. Then I mounted that ISO file and the checksum changed. Here are the exact steps I made, a copy-paste from my console, CentOS…
user77422
19
votes
3 answers

Calculate md5sum of a CD/DVD

I have an ISO file, which I burned to a CD. Now how can I check if the CD is correctly created? I would like a command that calculate the hash sum that I can use to check with the hash sum I calculate on the ISO file. Ideally the command…
phunehehe
  • 20,030
  • 27
  • 99
  • 151
17
votes
4 answers

Is there a KDE tool for mounting disk images, like GNOME Disks?

I am not aware of a KDE-native tool to mount iso images in Plasma 5 and I keep using the Gnome tool gnome-disk-utility, as indicated here. Is there a KDE version of this tool? It is able to do more than just add a context menu entry to mount iso…
user32012
14
votes
2 answers

How/Why does cat write a bootable ISO to a device

I recently discovered that I can create a bootable USB key from an ISO file by simply using cat (or dd). I can't find any information on how this works. Why would: cat my.iso > /dev/sdb && sync take that file and write all the files it contains,…
user13757
13
votes
1 answer

How do I boot from ISO file stored on hard disk?

I know that I can create/burn bootable CD/DVD or live USB and can boot/install from it. But suppose I am currently running GNU/Linux and I've ISO file of another GNU/Linux that I want to install on my hard disk, then Can I directly boot from ISO…
Pandya
  • 23,898
  • 29
  • 92
  • 144
12
votes
11 answers

How to Create Bootable Windows 10 image in Debian?

Pseudocode but originally developed for Windows 7 iso file but applied for Windows 8 in the thread How to create bootable Windows 8 iso image in Linux? but it does not work with Windows 10 iso #…
Léo Léopold Hertz 준영
  • 6,788
  • 29
  • 91
  • 193
1
2 3
28 29