Files
cheatsheet-tldr/tldr/linux/genisoimage
2025-12-01 00:25:28 +00:00

18 lines
551 B
Plaintext

---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# genisoimage
> Pre-mastering program to generate ISO9660/Joliet/HFS hybrid filesystems.
> More information: <https://manned.org/genisoimage>.
- Create an ISO image from the given source directory:
`genisoimage -o {{myimage.iso}} {{path/to/source_directory}}`
- Create an ISO image with files larger than 2GiB by reporting a smaller apparent size for ISO9660 filesystems:
`genisoimage -o -allow-limited-size {{myimage.iso}} {{path/to/source_directory}}`