ISO Image Creation – How to Create ISO Image from Folder via Terminal

iso

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.

Best Answer

Seems to be pretty straightforward to do with genisoimage, in the package with the same name on Debian:

genisoimage -o output_image.iso directory_name

There are many options to cover different cases, so you should check the man page to see what fits your particular use case.

See also

Related Question