This shows you the differences between two versions of the page.
linux:create_iso [2021/01/01 21:25] 127.0.0.1 external edit |
linux:create_iso [2023/03/23 21:31] (current) manu |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== Create an ISO on Linux ====== | ====== Create an ISO on Linux ====== | ||
+ | |||
+ | ===== solution 1 ===== | ||
+ | |||
+ | Easy | ||
+ | <cli prompt='#'> | ||
+ | # dd bs=4M if=/path/to/file.iso of=/dev/sdX status=progress oflag=sync | ||
+ | </cli> | ||
+ | |||
+ | ===== solution 2 ===== | ||
Under Linux, you can create an ISO image from a folder using a command line argument with the mkisofs tools. The following example creates an ISO image suitable to be used under Windows: | Under Linux, you can create an ISO image from a folder using a command line argument with the mkisofs tools. The following example creates an ISO image suitable to be used under Windows: |