tldr/pages/linux/mkisofs.md

13 lines
287 B
Markdown
Raw Normal View History

2017-09-07 15:19:12 +01:00
# mkisofs
2017-09-09 17:01:20 +01:00
> Create ISO files from folders.
> Also aliased as `genisoimage`.
2017-09-07 15:19:12 +01:00
- Create an ISO from a folder:
2017-09-09 17:01:20 +01:00
`mkisofs -o {{filename.iso}} {{path/to/source_folder}}`
2017-09-07 15:19:12 +01:00
- Set the disc label when creating an ISO:
2017-09-09 17:01:20 +01:00
`mkisofs -o {{filename.iso}} -V {{"label_name"}} {{path/to/source_folder}}`